6 lines
101 B
C++
6 lines
101 B
C++
class ClassWithProtectedMethod {
|
|
protected:
|
|
int get_int() { return 0; };
|
|
};
|
|
|