Is there a way to define a class Foo in C++ so that

  1. I can inherit from it
  2. I can't "diamond inherit" from it

I.e.

class Cat: public Foo{} // okay
class Dog: public Foo{} // okay
class Weird: public Cat, public Dog {} // I want this to throw a compiler error
link|improve this question

79% accept rate
@vava: nice edit, didn't realize 1. 2. auto itemizes – anon Feb 23 '10 at 5:12
You don't want to use virtual inheritance or you are unaware of it? – Duck Feb 23 '10 at 5:16
I was unaware of it. However, I'd also like to get a compiler error. The base class "Foo" i'm inheriting from is a invasive ref-counted pointer. I should not have two instances of it in an object. – anon Feb 23 '10 at 5:19
1  
You can always take ATL's approach and require the most derived class hold the refcount instead of the base. – MSN Feb 23 '10 at 5:28
Using private inheritance, there will only be a copy of the base Foo type, so there would only be a reference count. – David Rodríguez - dribeas Feb 23 '10 at 8:04
show 1 more comment
feedback

2 Answers

Cprogramming.com Tutorial: Solving the Diamond Problem in C++ with ...

http://www.cprogramming.com/tutorial/virtual_inheritance.html

Try This

For this type problem can be Avoid or solve by interface.

link|improve this answer
Amazing. I didn't realize there's "virtual" inheritance. – anon Feb 23 '10 at 5:18
The problem is that virtual inheritance is on hand of those who derive, you can't really do anything to change that... so just hope those who write derivative classes read your comments ;) – Matthieu M. Feb 23 '10 at 16:33
feedback

Another source of information:

http://www.parashift.com/c++-faq-lite/multiple-inheritance.html

Actually the whole C++ faq little it is really worth reading if you are programming on C++.

link|improve this answer
And the associated book is good too. – markh44 Feb 23 '10 at 9:17
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.