ajout sujets et fini ex01 d01
This commit is contained in:
23
d01/ex01/Zombie.hpp
Normal file
23
d01/ex01/Zombie.hpp
Normal file
@@ -0,0 +1,23 @@
|
||||
#ifndef ZOMBIE_HPP
|
||||
# define ZOMBIE_HPP
|
||||
|
||||
#include <iostream>
|
||||
#include <string>
|
||||
|
||||
class Zombie {
|
||||
|
||||
public:
|
||||
|
||||
Zombie();
|
||||
~Zombie();
|
||||
|
||||
void announce( void );
|
||||
void put_name( std::string name );
|
||||
|
||||
private:
|
||||
|
||||
std::string _name;
|
||||
|
||||
};
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user