5 lines
96 B
C++
5 lines
96 B
C++
class ClassWithPrivateMethod {
|
|
private:
|
|
int get_int() { return 0; };
|
|
};
|