15 lines
223 B
C++

#ifndef EXAMPLE09_DOG_H
#define EXAMPLE09_DOG_H
#include <iostream>
class Dog : public Animal {
public:
void voice() const {
std::cout << "bark" << std::endl;
}
};
#endif //EXAMPLE09_DOG_H