Hi Thomas,
Thanks for your suggestion. Could you please solve my query related to
polymorphism also. I have sent a mail to this group regading my polymorphism
query , along with this api hooking query (immediate mails)
Anyhow I am just copy pasting my query once again.
I have some basic queries related to polymorphism.
for example:
1)class Base
{
public:
virtual void show()
{
}
}
int main()
{
Base obj;
obj.show() // I think complite time polymorphism comes here. Am I correct ?
Base *obj = new Base()
obj->show() // Compile time polymorphism .. Am I correct?
}
Thx,
--Gopi
Love Cricket? Check out live scores, photos, video highlights and more.
Click here http://cricket.yahoo.com
[Non-text portions of this message have been removed]