Files

25 lines
287 B
C++

#ifndef DOG_HPP
# define DOG_HPP
# include "color.h"
# include <iostream>
# include <string>
# include "Animal.hpp"
class Dog : public Animal {
public:
Dog( void );
Dog( Dog const & src );
~Dog( void );
Dog & operator=( Dog const & rhs );
void makeSound() const;
};
#endif