#ifndef GENERICCORE_H #define GENERICCORE_H class GenericCore { public: GenericCore(); ~GenericCore(); void sayHello() const; }; #endif // GENERICCORE_H