cpp/cpp04/ex00/Cat.hpp
Alexandre POMMIER 04eaf3c332 little step ex05
2022-08-04 19:46:56 +02:00

30 lines
1.1 KiB
C++

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* Cat.hpp :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: apommier <apommier@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/07/14 02:11:39 by apommier #+# #+# */
/* Updated: 2022/08/04 14:14:02 by apommier ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef CAT_HPP
# define CAT_HPP
#include "Animal.hpp"
class Cat : public Animal {
public :
Cat();
Cat(const Cat& copy);
virtual ~Cat();
Cat &operator=(const Cat& rhs);
void makeSound(void) const;
};
#endif