cookhistory.h 196 Bytes edit raw blame history 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 #ifndef COOKHISTORY_H #define COOKHISTORY_H class CookHistory { static CookHistory *instance; CookHistory(); public: static CookHistory *getInstance(); }; #endif // COOKHISTORY_H