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

@ -15,8 +15,8 @@
*/
// Generic (POSIX) class for searching files and managing paths
#ifndef __FILEMANAGE__
#define __FILEMANAGE__
#ifndef __FILEMANAGE_HH__
#define __FILEMANAGE_HH__
#include <vector>
#include <string>
@ -24,6 +24,8 @@
#include <sstream>
#include <fstream>
namespace ghidra {
using std::vector;
using std::string;
using std::ifstream;
@ -49,4 +51,5 @@ public:
static string discoverGhidraRoot(const char *argv0);
};
} // End namespace ghidra
#endif