d04 ex00 gestion virtual destructor et ajout messages constructors et destructors
This commit is contained in:
23
d04/ex01/WrongCat.hpp
Normal file
23
d04/ex01/WrongCat.hpp
Normal file
@@ -0,0 +1,23 @@
|
||||
#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
|
||||
|
||||
Reference in New Issue
Block a user