9 lines
118 B
C++
9 lines
118 B
C++
|
|
class MyClass
|
||
|
|
{
|
||
|
|
public:
|
||
|
|
MyClass(): variable(0) {}
|
||
|
|
void someMethod() { variable = 1; }
|
||
|
|
private:
|
||
|
|
int variable;
|
||
|
|
};
|