added skeleton for parsing

This commit is contained in:
zanostro 2025-12-10 09:26:34 +01:00
parent 1b8115ef23
commit 7c6379c62d
7 changed files with 123 additions and 0 deletions

View file

@ -0,0 +1,16 @@
#ifndef MNEMONIC_H
#define MNEMONIC_H
#include <string>
using std::string;
class Mnemonic {
public:
string toString() const;
};
#endif // MNEMONIC_H