style: use my one (with logic) norm for header hope u enjoy it

This commit is contained in:
Raphael 2024-12-23 14:36:04 +01:00
parent ff72109a4e
commit 2d6b2ddb83
13 changed files with 316 additions and 315 deletions

View file

@ -6,27 +6,27 @@
/* By: rparodi <rparodi@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/11/04 16:03:03 by rparodi #+# #+# */
/* Updated: 2024/11/04 16:31:17 by rparodi ### ########.fr */
/* Updated: 2024/12/23 12:36:49 by rparodi ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef ZOMBIE_HPP
# define ZOMBIE_HPP
#include <string>
#include <iostream>
class Zombie
{
public:
Zombie(std::string name);
~Zombie();
void announce(void);
private:
std::string _name;
};
Zombie* newZombie( std::string name );
void randomChump( std::string name );
#define ZOMBIE_HPP
#include <string>
#include <iostream>
class Zombie
{
public:
Zombie(std::string name);
~Zombie();
void announce(void);
private:
std::string _name;
};
Zombie* newZombie( std::string name );
void randomChump( std::string name );
#endif