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