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

27 lines
361 B
C++

#ifndef WRONG_ANIMAL_HPP
# define WRONG_ANIMAL_HPP
#include <iostream>
#include <string>
class WrongAnimal {
public:
WrongAnimal( void );
WrongAnimal( WrongAnimal const & src );
~WrongAnimal( void );
WrongAnimal & operator=( WrongAnimal const & rhs );
void makeSound() const;
std::string getType() const;
protected:
std::string type;
};
#endif