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