mirror of
https://github.com/opnsense/src.git
synced 2026-03-23 03:03:09 -04:00
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;
|
|
};
|
|
};
|