Initial commit

This commit is contained in:
2026-04-01 22:17:05 +03:00
commit 01f094c49b
10 changed files with 293 additions and 0 deletions
+6
View File
@@ -0,0 +1,6 @@
#include "Operation.h"
Operation::Operation(const OpType type, int a, int b):
type{type}, a{a}, b{b}
{
}