hello.h 85 B

1234567891011
  1. #ifndef _hello_h
  2. #define _hello_h
  3. class Hello
  4. {
  5. public:
  6. void Print();
  7. };
  8. #endif