Files
GenericQtClientCore/genericcore.cpp

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!"; }