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
|
@ -16,8 +16,8 @@
|
|||
/// \file interface.hh
|
||||
/// \brief Classes and utilities for a \e generic command-line interface
|
||||
|
||||
#ifndef __INTERFACE__
|
||||
#define __INTERFACE__
|
||||
#ifndef __INTERFACE_HH__
|
||||
#define __INTERFACE_HH__
|
||||
|
||||
#include "capability.hh"
|
||||
#include <map>
|
||||
|
@ -26,6 +26,8 @@
|
|||
#include <sstream>
|
||||
#include <cstdio>
|
||||
|
||||
namespace ghidra {
|
||||
|
||||
using std::map;
|
||||
using std::istream;
|
||||
using std::ostream;
|
||||
|
@ -295,4 +297,5 @@ public:
|
|||
virtual void execute(istream &s);
|
||||
};
|
||||
|
||||
} // End namespace ghidra
|
||||
#endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue