cpp04/ex00/Dog.hpp

19 lines
316 B
C++

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