6 lines
105 B
C++
6 lines
105 B
C++
#include "Operation.h"
|
|
|
|
Operation::Operation(const OpType type, int a, int b):
|
|
type{type}, a{a}, b{b}
|
|
{
|
|
} |