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