mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-05 02:39:44 +02:00
Suggestions from github issue #382
This commit is contained in:
parent
ba98e85429
commit
933e16f751
10 changed files with 19 additions and 17 deletions
|
@ -116,8 +116,6 @@ public:
|
|||
class Architecture : public AddrSpaceManager {
|
||||
public:
|
||||
string archid; ///< ID string uniquely describing this architecture
|
||||
string description; ///< Description of architecture
|
||||
string version; ///< Configuration version
|
||||
|
||||
// Configuration data
|
||||
int4 trim_recurse_max; ///< How many levels to let parameter trims recurse
|
||||
|
@ -178,6 +176,8 @@ public:
|
|||
void restoreFlowOverride(const Element *el); ///< Set flow overrides from XML
|
||||
virtual ~Architecture(void); ///< Destructor
|
||||
|
||||
virtual string getDescription(void) const { return archid; } ///< Get a string describing \b this architecture
|
||||
|
||||
/// \brief Print an error message to console
|
||||
///
|
||||
/// Write the given message to whatever the registered error stream is
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue