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