1 #ifndef HELLO_CPP_H 2 #define HELLO_CPP_H 3 4 class Hello 5 { 6 public: 7 Hello(); 8 ~Hello(); 9 void printMessage(char* msg); 10 }; 11 12 #endif 13