16 lines
208 B
C++
16 lines
208 B
C++
#ifndef GENERICCORE_H
|
|
#define GENERICCORE_H
|
|
|
|
class QString;
|
|
|
|
class GenericCore {
|
|
public:
|
|
GenericCore();
|
|
~GenericCore();
|
|
|
|
QString toString() const;
|
|
void sayHello() const;
|
|
};
|
|
|
|
#endif // GENERICCORE_H
|