mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-04 18:29:37 +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
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue