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

@ -13,8 +13,8 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#ifndef __CONTEXT_GHIDRA__
#define __CONTEXT_GHIDRA__
#ifndef __GHIDRA_CONTEXT_HH__
#define __GHIDRA_CONTEXT_HH__
/// \file ghidra_context.hh
/// \brief Obtaining context information from a Ghidra client
@ -22,6 +22,8 @@
#include "globalcontext.hh"
#include "ghidra_arch.hh"
namespace ghidra {
/// \brief An implementation of a ContextDatabase obtaining context information via a Ghidra client
///
/// This only implements the tracked register parts of the interface. In fact, this only implements
@ -72,4 +74,5 @@ public:
throw LowlevelError("getTrackedDefault should not be called for GHIDRA"); }
};
} // End namespace ghidra
#endif