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