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

@ -15,9 +15,14 @@
*/
/// \file xml_arch.hh
/// \brief Extension to read executables based on an XML format
#ifndef __XML_ARCH_HH__
#define __XML_ARCH_HH__
#include "sleigh_arch.hh"
#include "loadimage_xml.hh"
namespace ghidra {
extern ElementId ELEM_XML_SAVEFILE; ///< Marshaling element \<xml_savefile>
/// \brief Extension for building an XML format capable Architecture
@ -45,3 +50,6 @@ public:
XmlArchitecture(const string &fname,const string &targ,ostream *estream); ///< Constructor
virtual ~XmlArchitecture(void) {}
};
} // End namespace ghidra
#endif