Posted: Mar 07, 2012 1:20 pm
by VazScep
mizvekov wrote:Just a minor nitpick here: C++ doesnt actually have an abstract keyword, that seems to be an extension specific to microsoft visual studio .NET / CLI
The common pattern to having interfaces in standard c++ is declaring classes with only pure virtual functions.
Eg.
virtual void foo() = 0;
Ah yes. It's been a long time since I've coded in C++.