class test
{
virtual void created(){}; //i must do these.
//or when i call the function the compiler give me an error
test()
{
void created();
}
}test;
void test::created()
{
cout << "hello world";
}
these code have 1 error. but how can overrride the created function?