GP-3276 Put all C++ classes in ghidra namespace

This commit is contained in:
caheckman 2023-03-30 15:35:19 -04:00
parent ca9a56b5f4
commit fe137f20f3
217 changed files with 1635 additions and 554 deletions

View file

@ -16,11 +16,13 @@
/// \file override.hh
/// \brief A system for sending override commands to the decompiler
#ifndef __OVERRIDE__
#define __OVERRIDE__
#ifndef __OVERRIDE_HH__
#define __OVERRIDE_HH__
#include "database.hh"
namespace ghidra {
class FuncCallSpecs; // Forward declaration
extern ElementId ELEM_DEADCODEDELAY; ///< Marshaling element \<deadcodedelay>
@ -89,4 +91,5 @@ public:
static uint4 stringToType(const string &nm); ///< Convert a string to a flow override type
};
} // End namespace ghidra
#endif