Files
Calculator/command.h
T
2026-04-01 22:17:05 +03:00

15 lines
327 B
C++

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;
};