1 #ifndef _CMAKE_SOMECLASS_HXX
2 #define _CMAKE_SOMECLASS_HXX
3 
4 namespace ns {
5 class someclass
6 {
7 public:
8   int someint;
9   void* someptr;
10   char somechar;
11   bool somebool;
12 };
13 }
14 
15 #endif
16