Sophie

Sophie

distrib > Mageia > 6 > armv7hl > by-pkgid > d3c732bcddee997381ae7599db6439ca > files > 577

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

#ifndef X_H
#define X_H

struct X
{
    int i;

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

#endif // X_H