17 lines
168 B
C++
17 lines
168 B
C++
|
|
#include "macro2.h"
|
|
|
|
#define ONE 1
|
|
#define TWO 2
|
|
#define THREE 3
|
|
#define FOUR 4
|
|
|
|
class Simple
|
|
{
|
|
public:
|
|
int
|
|
Method()
|
|
{
|
|
return ONE + TWO;
|
|
};
|
|
};
|