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