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