#include "genericcore.h" #include #include using namespace std; GenericCore::GenericCore() { qDebug() << "Creating core..."; } GenericCore::~GenericCore() { qDebug() << "Destroying core..."; } QString GenericCore::toString() const { return QString("GenericCore (Version x.y.z)"); } void GenericCore::sayHello() const { qDebug() << "Hello from the core!"; }