2025-10-02 11:19:14 +02:00
|
|
|
#ifndef GENERICCORE_H
|
|
|
|
|
#define GENERICCORE_H
|
|
|
|
|
|
2025-10-02 16:22:47 +02:00
|
|
|
class QString;
|
|
|
|
|
|
2025-10-02 16:22:01 +02:00
|
|
|
class GenericCore {
|
|
|
|
|
public:
|
|
|
|
|
GenericCore();
|
|
|
|
|
~GenericCore();
|
2025-10-02 13:42:13 +02:00
|
|
|
|
2025-10-02 16:22:47 +02:00
|
|
|
QString toString() const;
|
2025-10-02 16:22:01 +02:00
|
|
|
void sayHello() const;
|
2025-10-02 11:19:14 +02:00
|
|
|
};
|
|
|
|
|
|
2025-10-02 16:22:01 +02:00
|
|
|
#endif // GENERICCORE_H
|