Files
coroutine/example/cpp03/asymmetric/X.h
2014-08-23 13:39:24 +02:00

14 lines
105 B
C

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