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,8 +16,8 @@
/// \file ifacedecomp.hh
/// \brief Console interface commands for the decompiler engine
#ifndef __IFACE_DECOMP__
#define __IFACE_DECOMP__
#ifndef __IFACEDECOMP_HH__
#define __IFACEDECOMP_HH__
#include "graph.hh"
#include "grammar.hh"
@ -28,6 +28,8 @@
#include "rulecompile.hh"
#endif
namespace ghidra {
/// \brief Interface capability point for all decompiler commands
class IfaceDecompCapability : public IfaceCapability {
static IfaceDecompCapability ifaceDecompCapability; ///< Singleton instance
@ -656,4 +658,5 @@ public:
#endif
} // End namespace ghidra
#endif