Files
GenericQtClientCore/genericcore.h

14 lines
168 B
C
Raw Normal View History

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