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