15 lines
183 B
C++
15 lines
183 B
C++
|
|
#ifndef DOG_HPP
|
||
|
|
#define DOG_HPP
|
||
|
|
|
||
|
|
#include "Animal.hpp"
|
||
|
|
|
||
|
|
class Dog : public Animal {
|
||
|
|
public:
|
||
|
|
Dog();
|
||
|
|
Dog(const Dog &other);
|
||
|
|
~Dog();
|
||
|
|
Dog &operator=(const Dog &other);
|
||
|
|
};
|
||
|
|
|
||
|
|
#endif
|