Re: [GD-General] Multiple Inheritance and RTTI
Brought to you by:
vexxed72
|
From: Thatcher U. <tu...@tu...> - 2003-02-06 14:16:09
|
On Feb 06, 2003 at 10:31 -0000, Gareth Lewin wrote:
> COM basics are extremly simple to implement.
>
> You really need a standard way to implement a "Give me this interface"
> function. (QueryIterface)
> A standard way of iding interfaces (GUIDs or FourCCs or whatever)
> And a base interface that concreate class implements. (IUnknown)
To try to cut through the terminology a little:
COM == RTTI
QueryInterface == dynamic_cast
GUID == typeid
IUnknown == any polymorphic class
Obviously the details vary.
--
Thatcher Ulrich
http://tulrich.com
|