6 lines
95 B
C++
6 lines
95 B
C++
|
class ClassWithPublicMethod {
|
||
|
public:
|
||
|
int get_int() { return 0; };
|
||
|
};
|
||
|
|