12 lines
99 B
C++
12 lines
99 B
C++
|
|
class MyClass
|
||
|
|
{
|
||
|
|
private:
|
||
|
|
int x;
|
||
|
|
|
||
|
|
public:
|
||
|
|
int getX() const
|
||
|
|
{
|
||
|
|
return x;
|
||
|
|
}
|
||
|
|
};
|