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,11 +15,13 @@
|
|||
*/
|
||||
/// \file condexe.hh
|
||||
/// \brief Classes for simplifying control-flow with shared conditional expressions
|
||||
#ifndef __CONDEXE__
|
||||
#define __CONDEXE__
|
||||
#ifndef __CONDEXE_HH__
|
||||
#define __CONDEXE_HH__
|
||||
|
||||
#include "funcdata.hh"
|
||||
|
||||
namespace ghidra {
|
||||
|
||||
/// \brief A helper class for describing the similarity of the boolean condition between 2 CBRANCH operations
|
||||
///
|
||||
/// This class determines if two CBRANCHs share the same condition. It also determines if the conditions
|
||||
|
@ -234,4 +236,5 @@ public:
|
|||
virtual int4 applyOp(PcodeOp *op,Funcdata &data);
|
||||
};
|
||||
|
||||
} // End namespace ghidra
|
||||
#endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue