18 lines
168 B
C
18 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;
|
||
|
};
|
||
|
};
|