15 lines
204 B
C++
15 lines
204 B
C++
// for test macro expand
|
|
|
|
#include "../x2struct.hpp"
|
|
|
|
struct Test {
|
|
int a;
|
|
int b;
|
|
int c;
|
|
int d;
|
|
int e;
|
|
int f;
|
|
int g;
|
|
XTOSTRUCT(O(a,b,c), A(b, "_id"), O(c,d), M(e,f,g));
|
|
};
|