ajout sujets et fini ex01 d01

This commit is contained in:
hugogogo
2022-02-05 17:11:24 +01:00
parent 5e3d23ba8f
commit e6929e8e12
7 changed files with 141 additions and 0 deletions

23
d01/ex01/Zombie.hpp Normal file
View 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