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
|
@ -15,8 +15,8 @@
|
|||
*/
|
||||
/// \file architecture.hh
|
||||
/// \brief Architecture and associated classes that help manage a single processor architecture and load image
|
||||
#ifndef __CPUI_ARCHITECTURE__
|
||||
#define __CPUI_ARCHITECTURE__
|
||||
#ifndef __ARCHITECTURE_HH__
|
||||
#define __ARCHITECTURE_HH__
|
||||
|
||||
#include "capability.hh"
|
||||
#include "varmap.hh"
|
||||
|
@ -34,6 +34,8 @@
|
|||
#include "transform.hh"
|
||||
#include "prefersplit.hh"
|
||||
|
||||
namespace ghidra {
|
||||
|
||||
#ifdef CPUI_STATISTICS
|
||||
/// \brief Class for collecting statistics while processing over multiple functions
|
||||
///
|
||||
|
@ -397,4 +399,5 @@ inline bool Architecture::highPtrPossible(const Address &loc,int4 size) const {
|
|||
return !nohighptr.inRange(loc,size);
|
||||
}
|
||||
|
||||
} // End namespace ghidra
|
||||
#endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue