Hi!

Say I have something like:

class A
{
public:
  void Foo()
  {
  }
};

class iB
{
public:
  virtual void Foo() = 0;
};

class B : public A, public iB
{
public:
  virtual void Foo()
  {
    A::Foo();
  }
};

int main()
{
  B b;
  return 0;
}

Is there any way to avoid the A::Foo(); style delegation in Crystal Space?
maybe its possible to define the interface used in A and then tack on the
implementation for scfImplementation in B?

thanks
-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
Crystal-main mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/crystal-main
Unsubscribe: mailto:[EMAIL PROTECTED]

Reply via email to