X.h 105 B

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