mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-04 10:19:23 +02:00
GP-3276 Put all C++ classes in ghidra namespace
This commit is contained in:
parent
ca9a56b5f4
commit
fe137f20f3
217 changed files with 1635 additions and 554 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue