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,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