1#ifndef X_H
2#define X_H
3
4struct X
5{
6 int i;
7
8 X( int i_) :
9 i( i_)
10 {}
11};
12
13#endif // X_H
14

source code of boost/libs/coroutine/example/asymmetric/X.h