1 #ifndef MAIN_H 2 #define MAIN_H 3 4 class Foo { 5 public: 6 static const int CONST_1; 7 static const double CONST_2; 8 }; 9 10 #endif /* MAIN_H */ 11