Initial commit
This commit is contained in:
@@ -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;
|
||||
};
|
||||
Reference in New Issue
Block a user