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 printjava.hh
/// \brief Classes supporting the java-language back-end to the decompiler
#ifndef __PRINTJAVA__
#define __PRINTJAVA__
#ifndef __PRINTJAVA_HH__
#define __PRINTJAVA_HH__
#include "printc.hh"
namespace ghidra {
/// \brief Factory and static initializer for the "java-language" back-end to the decompiler
///
/// The singleton adds itself to the list of possible back-end languages for the decompiler
@ -71,4 +73,6 @@ public:
virtual void opCallind(const PcodeOp *op);
virtual void opCpoolRefOp(const PcodeOp *op);
};
} // End namespace ghidra
#endif