Files
GenericQtClientCore/genericcore.cpp

15 lines
382 B
C++
Raw Normal View History

2025-10-02 11:19:14 +02:00
#include "genericcore.h"
#include <QDebug>
2025-10-02 16:22:47 +02:00
#include <QString>
using namespace std;
GenericCore::GenericCore() { qDebug() << "Creating core..."; }
GenericCore::~GenericCore() { qDebug() << "Destroying core..."; }
2025-10-02 16:22:47 +02:00
QString GenericCore::toString() const { return QString("GenericCore (Version x.y.z)"); }
void GenericCore::sayHello() const { qDebug() << "Hello from the core!"; }