Sophie

Sophie

distrib > Mageia > 6 > i586 > by-pkgid > 8bc6759a6f32712e5bc0cdfb80b23784 > files > 577

boost-examples-1.60.0-6.mga6.noarch.rpm

#ifndef X_H
#define X_H

struct X
{
    int i;

    X( int i_) :
        i( i_)
    {}
};

#endif // X_H