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

@ -16,12 +16,14 @@
/// \file emulate.hh
/// \brief Classes for emulating p-code
#ifndef __CPUI_EMULATE__
#define __CPUI_EMULATE__
#ifndef __EMULATE_HH__
#define __EMULATE_HH__
#include "memstate.hh"
#include "translate.hh"
namespace ghidra {
class Emulate; // Forward declaration
/// \brief A collection of breakpoints for the emulator
@ -545,4 +547,5 @@ inline Address EmulatePcodeCache::getExecuteAddress(void) const
- VarnodeData
*/
} // End namespace ghidra
#endif