mirror of
https://github.com/unknownworlds/NS.git
synced 2024-11-15 09:11:55 +00:00
8552ac617c
git-svn-id: https://unknownworlds.svn.cloudforge.com/ns1@1 67975925-1194-0748-b3d5-c16f83f1a3a1
11 lines
139 B
C++
11 lines
139 B
C++
class X
|
|
{
|
|
public:
|
|
X(int i_ = 0) : i(i_) {}
|
|
~X() {}
|
|
operator int() const { return i; }
|
|
|
|
private:
|
|
int i;
|
|
};
|
|
|