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,13 +16,15 @@
/// \file printlanguage.hh
/// \brief Classes for printing tokens in a high-level language
#ifndef __PRINT_LANGUAGE__
#define __PRINT_LANGUAGE__
#ifndef __PRINTLANGUAGE_HH__
#define __PRINTLANGUAGE_HH__
#include "capability.hh"
#include "cast.hh"
#include "prettyprint.hh"
namespace ghidra {
class PrintLanguage;
class ResolvedUnion;
@ -561,4 +563,5 @@ public:
static void formatBinary(ostream &s,uintb val); ///< Print a number in binary form
};
} // End namespace ghidra
#endif