This repository has been archived on 2024-12-16. You can view files and clone it, but cannot push or open issues or pull requests.
CodeBlocksPortable/dm/stlport/test/regression/rawiter.hpp

12 lines
128 B
C++

class X
{
public:
X(int i_ = 0) : i(i_) {}
~X() {}
operator int() const { return i; }
private:
int i;
};