1 2 #include "macro2.h" 3 4 #define ONE 1 5 #define TWO 2 6 #define THREE 3 7 #define FOUR 4 8 9 class Simple 10 { 11 public: 12 int Method()13 Method() 14 { 15 return ONE + TWO; 16 }; 17 }; 18