Are Interfaces supported in (Microsoft) unmanaged C++?
Hi:
In the C#/.Net Managed Interfaces are supported.
Are interfaces supported in unmanaged C++?
I know I can create an abstract class with virtual function pointers which simulate an interface definition.
But, does the concept of a C# style interface exist?
One of my C++ projects required interfaces. This was implemented using abstract classes with only pure virtual functions and no implementations and no data members; and also used virtual destructors.
jxbma
ASKER
phoffric::>> How did you wrap/expose the classes in that project to be consumed by a C# (managed) client?
>> How did you wrap/expose the classes in that project to be consumed by a C#
This question was not in the OP. My project didn't use C# so this was a non-issue.
That's what I thought.