15 lines
382 B
C++
15 lines
382 B
C++
#include "genericcore.h"
|
|
|
|
#include <QDebug>
|
|
#include <QString>
|
|
|
|
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!"; }
|