/* Copyright (c) 2022-present, Trail of Bits, Inc. All rights reserved. This source code is licensed in accordance with the terms specified in the LICENSE file found in the root directory of this source tree. */ #include "sleigh/Version.h" namespace sleigh { std::string_view GetGhidraVersion(void) { return "@ghidra_version@"; } std::string_view GetGhidraCommitHash(void) { return "@ghidra_git_tag@"; } std::string_view GetGhidraReleaseType(void) { return "@sleigh_RELEASE_TYPE@"; } } // namespace sleigh