Files
GenericQtClientCore/genericcore.h

16 lines
208 B
C
Raw Normal View History

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