cpp04/ex00/Cat.hpp

19 lines
316 B
C++

#ifndef CAT_HPP
# define CAT_HPP
# include <iostream>
# include "Animal.hpp"
class Cat : public Animal
{
public :
Cat();
Cat(std::string type);
Cat(const Cat &other);
virtual ~Cat();
Cat & operator=(const Cat &other);
virtual void makeSound() const;
};
#endif