Advanced form of inheritance. Instead of re-using the contents of only one class, the contents of more than one class will be used. In C++ the syntax is : class derivedClass : access_specifier baseClass1, baseClass2 { ... };

See also : OO, C++, polymorphic base class