A
Ali Karaali
Hello group !
I have a class interface (as .h ) but i don't have this class's source
file (as .cpp ). So i can't reach the source file..
class ServerBase {
public :
virtual void vfunc() const;
void nvfunc() const;
~ServerBase();
};
class ServerDer : public ServerBase {
public :
void vfunc() const;
~ServerDer();
};
I want to make nvfunc() and ~ServerBase functions virtual. how can i
do that?
I have a class interface (as .h ) but i don't have this class's source
file (as .cpp ). So i can't reach the source file..
class ServerBase {
public :
virtual void vfunc() const;
void nvfunc() const;
~ServerBase();
};
class ServerDer : public ServerBase {
public :
void vfunc() const;
~ServerDer();
};
I want to make nvfunc() and ~ServerBase functions virtual. how can i
do that?