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

@ -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