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
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue