12 lines
273 B
C++
12 lines
273 B
C++
#include "genericcore.h"
|
|
|
|
#include <QDebug>
|
|
|
|
using namespace std;
|
|
|
|
GenericCore::GenericCore() { qDebug() << "Creating core..."; }
|
|
|
|
GenericCore::~GenericCore() { qDebug() << "Destroying core..."; }
|
|
|
|
void GenericCore::sayHello() const { qDebug() << "Hello from the core!"; }
|