2025-10-02 11:19:14 +02:00
|
|
|
#include "genericcore.h"
|
|
|
|
|
|
2025-10-02 13:42:13 +02:00
|
|
|
#include <iostream>
|
|
|
|
|
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;
|
|
|
|
|
}
|