Files
42_INT_09_piscine_cpp/d04/WrongCat.hpp
Hugo LAMY ba3b88f0bf d04 ex00
2022-02-24 17:12:17 +01:00

24 lines
322 B
C++

#ifndef WRONG_CAT_HPP
# define WRONG_CAT_HPP
# include "WrongAnimal.hpp"
#include <iostream>
#include <string>
class WrongCat : public WrongAnimal {
public:
WrongCat( void );
WrongCat( WrongCat const & src );
~WrongCat( void );
WrongCat & operator=( WrongCat const & rhs );
void makeSound() const;
};
#endif