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 @@
enum class OpType
{
Addition, Subtraction, Multiplication, Division, Modulo, Special
};
class Operation
{
public:
int a;
int b;
OpType type;
Operation(const OpType type, int a, int b = 0);
};