d04 ex00
This commit is contained in:
27
d04/Dog.hpp
Normal file
27
d04/Dog.hpp
Normal file
@@ -0,0 +1,27 @@
|
||||
#ifndef DOG_HPP
|
||||
# define DOG_HPP
|
||||
|
||||
# include "Animal.hpp"
|
||||
|
||||
# include <iostream>
|
||||
# include <string>
|
||||
|
||||
class Dog : public Animal {
|
||||
|
||||
public:
|
||||
|
||||
Dog( void );
|
||||
Dog( Dog const & src );
|
||||
~Dog( void );
|
||||
Dog & operator=( Dog const & rhs );
|
||||
|
||||
void makeSound() const;
|
||||
|
||||
protected:
|
||||
|
||||
private:
|
||||
|
||||
};
|
||||
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user