mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-04 18:29:37 +02:00
GP-2767 Structured pieces
This commit is contained in:
parent
b707c2ea6b
commit
535ac7c08d
29 changed files with 834 additions and 210 deletions
|
@ -963,7 +963,8 @@ public:
|
|||
class UnknownProtoModel : public ProtoModel {
|
||||
ProtoModel *placeholderModel; ///< The model whose behavior \b this adopts as a behavior placeholder
|
||||
public:
|
||||
UnknownProtoModel(const string &nm,ProtoModel *placeHold) : ProtoModel(nm,*placeHold) { placeholderModel = placeHold; }
|
||||
UnknownProtoModel(const string &nm,ProtoModel *placeHold) : ProtoModel(nm,*placeHold) {
|
||||
placeholderModel = placeHold; } ///< Constructor
|
||||
ProtoModel *getPlaceholderModel(void) const { return placeholderModel; } ///< Retrieve the placeholder model
|
||||
virtual bool isUnknown(void) const { return true; }
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue