Tagged Questions

111
votes
9answers
76k views

How do you declare an interface in C++?

How do I setup a class that represents an interface? Is this just an abstract base class?
5
votes
4answers
231 views

Doesn't putting a “virtual destructor inside an interface” make it, by definition, not an interface anymore?

So here is the box I am in. I want to understand why it is important to have a "virtual destructor inside your interface class". You will see why that stuff is in quotes if you can hang to the ...
1
vote
3answers
309 views

Vtable placement of completely pure-virtual class

According to my (limited) knowledge of the C++ spec, the vtable of a class with virtual members is placed at the definition of the first non-pure non-inline virtual method. How do compilers handle ...