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 _name, int _value){ //constructor name = _name; value = _value; } ~Instruction(){} Instruction (const Instruction &r...