class A : IAppRegInf
{
void foo()
{
}
};
class B : A
{
};
where IAppRegInf is interface registered by application and foo is registered method. When this script code is build, class B cause error message.
Missing implementation of 'void A::foo()'
So this is bug or this feature is not implemented, inheriting from class that inherit from application registered interface. Best regards Marcin Musial [Edited by - Pris on October 19, 2007 3:12:23 PM]