Calculator

This commit is contained in:
2025-05-13 01:58:46 -05:00
parent 3196f7b81a
commit 32223cfa05
2 changed files with 174 additions and 49 deletions

View File

@@ -15,8 +15,14 @@ class Calculator : public Archimedes::Module {
private:
bool open = true;
bool parenthesis = true;
bool graphing = false;
void basicCalculator();
std::string calculate(std::string);
void graphingCalculator();
};