mirror of
https://github.com/unknownworlds/NS.git
synced 2025-01-09 19:00:52 +00:00
12 lines
139 B
C++
12 lines
139 B
C++
|
class X
|
||
|
{
|
||
|
public:
|
||
|
X(int i_ = 0) : i(i_) {}
|
||
|
~X() {}
|
||
|
operator int() const { return i; }
|
||
|
|
||
|
private:
|
||
|
int i;
|
||
|
};
|
||
|
|