/* * Test_Cpp.h * * Created on: 05.11.2014 * Author: q242695 */ #ifndef TEST_CPP_H_ #define TEST_CPP_H_ class display { public: display (void); volatile void Init(char*); volatile void Print(void); protected: private: }; class schermo: public display { public: schermo (void); void Print (void); protected: private: }; #endif /* TEST_CPP_H_ */