Added toString() method.

This commit is contained in:
2025-10-02 16:22:47 +02:00
parent 0bbac662f4
commit b631f4200e
2 changed files with 6 additions and 0 deletions

View File

@ -1,11 +1,14 @@
#ifndef GENERICCORE_H
#define GENERICCORE_H
class QString;
class GenericCore {
public:
GenericCore();
~GenericCore();
QString toString() const;
void sayHello() const;
};