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,10 +15,13 @@
*/
/// \file transform.hh
/// \brief Classes for building large scale transforms of function data-flow
#ifndef __TRANSFORM__
#define __TRANSFORM__
#ifndef __TRANSFORM_HH__
#define __TRANSFORM_HH__
#include "varnode.hh"
namespace ghidra {
class Funcdata; // Forward declaration
class TransformOp;
@ -248,4 +251,5 @@ inline bool TransformManager::preexistingGuard(int4 slot,TransformVar *rvn)
return true; // The op was not (will not be) visited on slot 0, build now
}
} // End namespace ghidra
#endif