Initial commit

This commit is contained in:
2026-04-01 22:17:05 +03:00
parent 4604e3afa1
commit dd7178167d
10 changed files with 293 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
class Command
{
public:
Command(bool shouldTerminate, char nextChar, int nextArg, bool shouldPrint);
bool shouldTerminate() const;
char getNextChar();
int getNextArg();
bool shouldPrint() const;
private:
bool m_shouldTerminate;
char m_nextChar;
int m_nextArg;
bool m_shouldPrint;
};