8 lines
74 B
C
8 lines
74 B
C
|
class base
|
||
|
{
|
||
|
public:
|
||
|
base (int _x);
|
||
|
int x;
|
||
|
virtual int meth ();
|
||
|
};
|