Is there a way to define a class Foo in C++ so that
- I can inherit from it
- 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
Footype, so there would only be a reference count. – David Rodríguez - dribeas Feb 23 '10 at 8:04