diff options
author | bd <bdunahu@operationnull.com> | 2025-03-31 23:51:08 -0400 |
---|---|---|
committer | bd <bdunahu@operationnull.com> | 2025-03-31 23:51:08 -0400 |
commit | a4e0e5ff6208205f6ebd980f9ed1eca91dcc4311 (patch) | |
tree | b9530876cabcb9041b925d795778237757bc797f /inc/instrDTO.h | |
parent | 2235e18ad81be4ed7097cd9cab93e35a990ec327 (diff) | |
parent | 574212dafcf1c4bdb7d5e6aaa577b74345988d67 (diff) |
Merge remote-tracking branch 'origin/dev-sid' into bdunahu
Diffstat (limited to 'inc/instrDTO.h')
-rw-r--r-- | inc/instrDTO.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/inc/instrDTO.h b/inc/instrDTO.h index 77a223e..8249122 100644 --- a/inc/instrDTO.h +++ b/inc/instrDTO.h @@ -43,6 +43,10 @@ class InstrDTO * @return the mnemonic of the instruction */ Mnemonic get_mnemonic(); + /** + * @return the type of the instruction + */ + Type get_type(); /** * @param set hist key @@ -68,6 +72,11 @@ class InstrDTO * @param the mnemonic of the instruction */ void set_mnemonic(Mnemonic); + + /** + * @param the type of the instruction + */ + void set_type(Type); private: /** @@ -91,6 +100,11 @@ class InstrDTO * The mnemonic of the operation. */ Mnemonic mnemonic; + + /** + * Type of the instruction + */ + Type type; }; #endif /* INSTRDTO_H_INCLUDED */ |