mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-05 02:39:44 +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
|
@ -17,13 +17,15 @@
|
|||
// You should be able to include this header to get all functionality
|
||||
// and we put a startup and shutdown routine here
|
||||
|
||||
#ifndef __LIBDECOMP__
|
||||
#define __LIBDECOMP__
|
||||
#ifndef __LIBDECOMP_HH__
|
||||
#define __LIBDECOMP_HH__
|
||||
|
||||
#include "architecture.hh"
|
||||
#include "sleigh_arch.hh"
|
||||
#include "ifacedecomp.hh"
|
||||
|
||||
namespace ghidra {
|
||||
|
||||
// Initialize all decompiler capabilities and register any sleigh specifications
|
||||
// If you have an entire ghidra distribution, you can specify its root with the -sleighhome- input,
|
||||
// otherwise you can provide a list of directories that contain '.lspec' files.
|
||||
|
@ -33,4 +35,5 @@ extern void startDecompilerLibrary(const char *sleighhome,const vector<string> &
|
|||
|
||||
extern void shutdownDecompilerLibrary(void);
|
||||
|
||||
} // End namespace ghidra
|
||||
#endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue