I want a pure virtual parent class to call a child implementation of a function like so:
class parent { public: void Read() { //read stuff } virtual vo
Title of the following article says it all: Never Call Virtual Functions during Construction or Destruction.