
23 Oct
2009
23 Oct
'09
10:39 a.m.
Hello. I have a problem which I think it's not documented, and I don't
know how to solve it.
The problem is the following:
I have a framework with an Object base class.
I have an interface IDrawable. Interfaces don't inherit Object.
Now I have a container, which holds IDrawables.
class IDrawable { virtual void draw() const = 0; }
Container