• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 #ifndef __HELLO_H__
2 #define __HELLO_H__
3 
4 class Hello
5 {
6 public:
7     void print();
8 };
9 
10 #endif
11