Tagged Questions
1
vote
4answers
202 views
C++ Class Inheritance problem
Hi I have two classes, one called Instruction, one called LDI which inherits from instruction class.
class Instruction{
protected:
string name;
int value;
public:
Instruction(string ...