coroutine/example/asymmetric/X.h
2016-03-22 08:26:37 +01:00

14 lines
105 B
C

#ifndef X_H
#define X_H
struct X
{
int i;
X( int i_) :
i( i_)
{}
};
#endif // X_H