Multiple inheritance support

This commit is contained in:
Wenzel Jakob
2016-09-11 20:00:40 +09:00
parent bad589a477
commit 8e5dceb6a6
15 changed files with 421 additions and 94 deletions

View File

@@ -45,10 +45,12 @@ pybind11 can map the following core C++ features to Python
- Arbitrary exception types
- Enumerations
- Callbacks
- Iterators and ranges
- Custom operators
- Single and multiple inheritance
- STL data structures
- Iterators and ranges
- Smart pointers with reference counting like `std::shared_ptr`
- Smart pointers with reference counting like ``std::shared_ptr``
- Internal references with correct reference counting
- C++ classes with virtual (and pure virtual) methods can be extended in Python