14 lines
287 B
Markdown
14 lines
287 B
Markdown
|
# Inheritance
|
||
|
|
||
|
c++ also allows to inherit from multiple base classes at once, but that is a
|
||
|
little to complicated for this lesson.
|
||
|
|
||
|
Relevant files:
|
||
|
|
||
|
- [animal.h](./animal.h)
|
||
|
- [animal.cpp](./animal.cpp)
|
||
|
- [cat.h](./cat.h)
|
||
|
- [cat.cpp](./cat.cpp)
|
||
|
- [dog.h](./dog.h)
|
||
|
- [dog.cpp](./dog.cpp)
|