Animals.cpp
Go to the documentation of this file.
1 #include "Animals.h"
2 #include <iostream>
3 
5 {
6  std::cout << std::endl << "KillerWhale" << std::endl;
7 }
8 
9 void Platypus::printName() const
10 {
11  std::cout << std::endl << "Platypus" << std::endl;
12 }
13 
15 {
16  std::cout << std::endl << "Myrmecophagidae" << std::endl;
17 }
18 
void printName() const
Definition: Animals.cpp:9
void printName() const
Definition: Animals.cpp:4
void printName() const
Definition: Animals.cpp:14