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 ghidra_process.hh
/// \brief The formal commands that can be issued to the decompiler by the Ghidra client
#ifndef __GHIDRA_PROCESS__
#define __GHIDRA_PROCESS__
#ifndef __GHIDRA_PROCESS_HH__
#define __GHIDRA_PROCESS_HH__
#include "capability.hh"
#include "ghidra_arch.hh"
@ -27,6 +27,8 @@
#include <iostream>
#include <csignal>
namespace ghidra {
using std::cin;
using std::cout;
@ -239,4 +241,5 @@ public:
extern void connect_to_console(Funcdata *fd);
#endif
} // End namespace ghidra
#endif