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