├── .gitignore ├── .vscode └── settings.json ├── LICENSE ├── README.md ├── module_00 ├── README.md ├── ex00 │ ├── Makefile │ └── megaphone.cpp ├── ex01 │ ├── Contact.cpp │ ├── Contact.hpp │ ├── Makefile │ ├── Phonebook.cpp │ ├── Phonebook.hpp │ ├── colors.hpp │ ├── display.cpp │ ├── display.hpp │ ├── includes.hpp │ ├── main.cpp │ └── msg.hpp └── ex02 │ ├── Account.cpp │ ├── Account.hpp │ ├── Makefile │ ├── diff.sh │ ├── old_log.txt │ └── tests.cpp ├── module_01 ├── README.md ├── ex00 │ ├── Makefile │ ├── Zombie.cpp │ ├── Zombie.hpp │ ├── chapters.hpp │ ├── choices.cpp │ ├── colors.hpp │ ├── defines.hpp │ ├── main.cpp │ ├── newZombie.cpp │ ├── prologue.cpp │ ├── randomChump.cpp │ └── typewriter.cpp ├── ex01 │ ├── Makefile │ ├── Zombie.cpp │ ├── Zombie.hpp │ ├── ZombieHorde.cpp │ ├── chapters.hpp │ ├── colors.hpp │ ├── defines.hpp │ ├── main.cpp │ └── typewriter.cpp ├── ex02 │ ├── Makefile │ └── main.cpp ├── ex03 │ ├── HumanA.cpp │ ├── HumanA.hpp │ ├── HumanB.cpp │ ├── HumanB.hpp │ ├── Makefile │ ├── Weapon.cpp │ ├── Weapon.hpp │ └── main.cpp ├── ex04 │ ├── Makefile │ ├── main.cpp │ ├── readFile.cpp │ ├── replace.hpp │ └── writeFile.cpp ├── ex05 │ ├── Karen.cpp │ ├── Karen.hpp │ ├── Makefile │ ├── colors.hpp │ └── main.cpp └── ex06 │ ├── Karen.cpp │ ├── Karen.hpp │ ├── Makefile │ ├── colors.hpp │ └── main.cpp ├── module_02 ├── README.md ├── ex00 │ ├── Fixed.cpp │ ├── Fixed.hpp │ ├── Makefile │ └── main.cpp ├── ex01 │ ├── Fixed.cpp │ ├── Fixed.hpp │ ├── Makefile │ └── main.cpp └── ex02 │ ├── Fixed.cpp │ ├── Fixed.hpp │ ├── Makefile │ └── main.cpp ├── module_03 ├── README.md ├── ex00 │ ├── ClapTrap.cpp │ ├── ClapTrap.hpp │ ├── Makefile │ └── main.cpp ├── ex01 │ ├── ClapTrap.cpp │ ├── ClapTrap.hpp │ ├── Makefile │ ├── ScavTrap.cpp │ ├── ScavTrap.hpp │ └── main.cpp ├── ex02 │ ├── ClapTrap.cpp │ ├── ClapTrap.hpp │ ├── FragTrap.cpp │ ├── FragTrap.hpp │ ├── Makefile │ ├── ScavTrap.cpp │ ├── ScavTrap.hpp │ └── main.cpp └── ex03 │ ├── ClapTrap.cpp │ ├── ClapTrap.hpp │ ├── DiamondTrap.cpp │ ├── DiamondTrap.hpp │ ├── FragTrap.cpp │ ├── FragTrap.hpp │ ├── Makefile │ ├── ScavTrap.cpp │ ├── ScavTrap.hpp │ └── main.cpp ├── module_04 ├── README.md ├── ex00 │ ├── Animal.cpp │ ├── Animal.hpp │ ├── Cat.cpp │ ├── Cat.hpp │ ├── Dog.cpp │ ├── Dog.hpp │ ├── Makefile │ ├── WrongAnimal.cpp │ ├── WrongAnimal.hpp │ ├── WrongCat.cpp │ ├── WrongCat.hpp │ └── main.cpp ├── ex01 │ ├── Animal.cpp │ ├── Animal.hpp │ ├── Brain.cpp │ ├── Brain.hpp │ ├── Cat.cpp │ ├── Cat.hpp │ ├── Dog.cpp │ ├── Dog.hpp │ ├── Makefile │ └── main.cpp ├── ex02 │ ├── Animal.cpp │ ├── Animal.hpp │ ├── Brain.cpp │ ├── Brain.hpp │ ├── Cat.cpp │ ├── Cat.hpp │ ├── Dog.cpp │ ├── Dog.hpp │ ├── Makefile │ └── main.cpp └── ex03 │ ├── AMateria.cpp │ ├── AMateria.hpp │ ├── Character.cpp │ ├── Character.hpp │ ├── Cure.cpp │ ├── Cure.hpp │ ├── ICharacter.hpp │ ├── IMateriaSource.hpp │ ├── Ice.cpp │ ├── Ice.hpp │ ├── Makefile │ ├── MateriaSource.cpp │ ├── MateriaSource.hpp │ └── main.cpp ├── module_05 ├── README.md ├── ex00 │ ├── Bureaucrat.cpp │ ├── Bureaucrat.hpp │ ├── Makefile │ └── main.cpp ├── ex01 │ ├── Bureaucrat.cpp │ ├── Bureaucrat.hpp │ ├── Form.cpp │ ├── Form.hpp │ ├── Makefile │ └── main.cpp ├── ex02 │ ├── AForm.cpp │ ├── AForm.hpp │ ├── Bureaucrat.cpp │ ├── Bureaucrat.hpp │ ├── Makefile │ ├── PresidentialPardonForm.cpp │ ├── PresidentialPardonForm.hpp │ ├── RobotomyRequestForm.cpp │ ├── RobotomyRequestForm.hpp │ ├── ShrubberyCreationForm.cpp │ ├── ShrubberyCreationForm.hpp │ ├── main.cpp │ └── trees.txt └── ex03 │ ├── AForm.cpp │ ├── AForm.hpp │ ├── Bureaucrat.cpp │ ├── Bureaucrat.hpp │ ├── Intern.cpp │ ├── Intern.hpp │ ├── Makefile │ ├── PresidentialPardonForm.cpp │ ├── PresidentialPardonForm.hpp │ ├── RobotomyRequestForm.cpp │ ├── RobotomyRequestForm.hpp │ ├── ShrubberyCreationForm.cpp │ ├── ShrubberyCreationForm.hpp │ ├── main.cpp │ └── trees.txt ├── module_06 ├── README.md ├── ex00 │ ├── Makefile │ ├── ScalarConversion.cpp │ ├── ScalarConversion.hpp │ ├── main.cpp │ └── tester.sh ├── ex01 │ ├── Makefile │ ├── deserialize.cpp │ ├── main.cpp │ ├── serialization.hpp │ └── serialize.cpp └── ex02 │ ├── Makefile │ └── main.cpp ├── module_07 ├── README.md ├── ex00 │ ├── Makefile │ ├── Student.cpp │ ├── Student.hpp │ ├── main.cpp │ └── whatever.hpp ├── ex01 │ ├── Makefile │ ├── Student.cpp │ ├── Student.hpp │ ├── iter.hpp │ └── main.cpp └── ex02 │ ├── Array.hpp │ ├── Makefile │ └── main.cpp └── module_08 ├── README.md ├── ex00 ├── Makefile ├── easyfind.hpp └── main.cpp ├── ex01 ├── Makefile ├── main.cpp ├── span.cpp └── span.hpp └── ex02 ├── Makefile ├── main.cpp ├── mutantstack.cpp └── mutantstack.hpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/README.md -------------------------------------------------------------------------------- /module_00/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_00/README.md -------------------------------------------------------------------------------- /module_00/ex00/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_00/ex00/Makefile -------------------------------------------------------------------------------- /module_00/ex00/megaphone.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_00/ex00/megaphone.cpp -------------------------------------------------------------------------------- /module_00/ex01/Contact.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_00/ex01/Contact.cpp -------------------------------------------------------------------------------- /module_00/ex01/Contact.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_00/ex01/Contact.hpp -------------------------------------------------------------------------------- /module_00/ex01/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_00/ex01/Makefile -------------------------------------------------------------------------------- /module_00/ex01/Phonebook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_00/ex01/Phonebook.cpp -------------------------------------------------------------------------------- /module_00/ex01/Phonebook.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_00/ex01/Phonebook.hpp -------------------------------------------------------------------------------- /module_00/ex01/colors.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_00/ex01/colors.hpp -------------------------------------------------------------------------------- /module_00/ex01/display.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_00/ex01/display.cpp -------------------------------------------------------------------------------- /module_00/ex01/display.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_00/ex01/display.hpp -------------------------------------------------------------------------------- /module_00/ex01/includes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_00/ex01/includes.hpp -------------------------------------------------------------------------------- /module_00/ex01/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_00/ex01/main.cpp -------------------------------------------------------------------------------- /module_00/ex01/msg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_00/ex01/msg.hpp -------------------------------------------------------------------------------- /module_00/ex02/Account.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_00/ex02/Account.cpp -------------------------------------------------------------------------------- /module_00/ex02/Account.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_00/ex02/Account.hpp -------------------------------------------------------------------------------- /module_00/ex02/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_00/ex02/Makefile -------------------------------------------------------------------------------- /module_00/ex02/diff.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_00/ex02/diff.sh -------------------------------------------------------------------------------- /module_00/ex02/old_log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_00/ex02/old_log.txt -------------------------------------------------------------------------------- /module_00/ex02/tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_00/ex02/tests.cpp -------------------------------------------------------------------------------- /module_01/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_01/README.md -------------------------------------------------------------------------------- /module_01/ex00/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_01/ex00/Makefile -------------------------------------------------------------------------------- /module_01/ex00/Zombie.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_01/ex00/Zombie.cpp -------------------------------------------------------------------------------- /module_01/ex00/Zombie.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_01/ex00/Zombie.hpp -------------------------------------------------------------------------------- /module_01/ex00/chapters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_01/ex00/chapters.hpp -------------------------------------------------------------------------------- /module_01/ex00/choices.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_01/ex00/choices.cpp -------------------------------------------------------------------------------- /module_01/ex00/colors.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_01/ex00/colors.hpp -------------------------------------------------------------------------------- /module_01/ex00/defines.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_01/ex00/defines.hpp -------------------------------------------------------------------------------- /module_01/ex00/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_01/ex00/main.cpp -------------------------------------------------------------------------------- /module_01/ex00/newZombie.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_01/ex00/newZombie.cpp -------------------------------------------------------------------------------- /module_01/ex00/prologue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_01/ex00/prologue.cpp -------------------------------------------------------------------------------- /module_01/ex00/randomChump.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_01/ex00/randomChump.cpp -------------------------------------------------------------------------------- /module_01/ex00/typewriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_01/ex00/typewriter.cpp -------------------------------------------------------------------------------- /module_01/ex01/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_01/ex01/Makefile -------------------------------------------------------------------------------- /module_01/ex01/Zombie.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_01/ex01/Zombie.cpp -------------------------------------------------------------------------------- /module_01/ex01/Zombie.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_01/ex01/Zombie.hpp -------------------------------------------------------------------------------- /module_01/ex01/ZombieHorde.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_01/ex01/ZombieHorde.cpp -------------------------------------------------------------------------------- /module_01/ex01/chapters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_01/ex01/chapters.hpp -------------------------------------------------------------------------------- /module_01/ex01/colors.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_01/ex01/colors.hpp -------------------------------------------------------------------------------- /module_01/ex01/defines.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_01/ex01/defines.hpp -------------------------------------------------------------------------------- /module_01/ex01/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_01/ex01/main.cpp -------------------------------------------------------------------------------- /module_01/ex01/typewriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_01/ex01/typewriter.cpp -------------------------------------------------------------------------------- /module_01/ex02/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_01/ex02/Makefile -------------------------------------------------------------------------------- /module_01/ex02/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_01/ex02/main.cpp -------------------------------------------------------------------------------- /module_01/ex03/HumanA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_01/ex03/HumanA.cpp -------------------------------------------------------------------------------- /module_01/ex03/HumanA.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_01/ex03/HumanA.hpp -------------------------------------------------------------------------------- /module_01/ex03/HumanB.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_01/ex03/HumanB.cpp -------------------------------------------------------------------------------- /module_01/ex03/HumanB.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_01/ex03/HumanB.hpp -------------------------------------------------------------------------------- /module_01/ex03/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_01/ex03/Makefile -------------------------------------------------------------------------------- /module_01/ex03/Weapon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_01/ex03/Weapon.cpp -------------------------------------------------------------------------------- /module_01/ex03/Weapon.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_01/ex03/Weapon.hpp -------------------------------------------------------------------------------- /module_01/ex03/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_01/ex03/main.cpp -------------------------------------------------------------------------------- /module_01/ex04/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_01/ex04/Makefile -------------------------------------------------------------------------------- /module_01/ex04/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_01/ex04/main.cpp -------------------------------------------------------------------------------- /module_01/ex04/readFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_01/ex04/readFile.cpp -------------------------------------------------------------------------------- /module_01/ex04/replace.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_01/ex04/replace.hpp -------------------------------------------------------------------------------- /module_01/ex04/writeFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_01/ex04/writeFile.cpp -------------------------------------------------------------------------------- /module_01/ex05/Karen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_01/ex05/Karen.cpp -------------------------------------------------------------------------------- /module_01/ex05/Karen.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_01/ex05/Karen.hpp -------------------------------------------------------------------------------- /module_01/ex05/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_01/ex05/Makefile -------------------------------------------------------------------------------- /module_01/ex05/colors.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_01/ex05/colors.hpp -------------------------------------------------------------------------------- /module_01/ex05/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_01/ex05/main.cpp -------------------------------------------------------------------------------- /module_01/ex06/Karen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_01/ex06/Karen.cpp -------------------------------------------------------------------------------- /module_01/ex06/Karen.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_01/ex06/Karen.hpp -------------------------------------------------------------------------------- /module_01/ex06/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_01/ex06/Makefile -------------------------------------------------------------------------------- /module_01/ex06/colors.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_01/ex06/colors.hpp -------------------------------------------------------------------------------- /module_01/ex06/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_01/ex06/main.cpp -------------------------------------------------------------------------------- /module_02/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_02/README.md -------------------------------------------------------------------------------- /module_02/ex00/Fixed.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_02/ex00/Fixed.cpp -------------------------------------------------------------------------------- /module_02/ex00/Fixed.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_02/ex00/Fixed.hpp -------------------------------------------------------------------------------- /module_02/ex00/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_02/ex00/Makefile -------------------------------------------------------------------------------- /module_02/ex00/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_02/ex00/main.cpp -------------------------------------------------------------------------------- /module_02/ex01/Fixed.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_02/ex01/Fixed.cpp -------------------------------------------------------------------------------- /module_02/ex01/Fixed.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_02/ex01/Fixed.hpp -------------------------------------------------------------------------------- /module_02/ex01/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_02/ex01/Makefile -------------------------------------------------------------------------------- /module_02/ex01/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_02/ex01/main.cpp -------------------------------------------------------------------------------- /module_02/ex02/Fixed.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_02/ex02/Fixed.cpp -------------------------------------------------------------------------------- /module_02/ex02/Fixed.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_02/ex02/Fixed.hpp -------------------------------------------------------------------------------- /module_02/ex02/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_02/ex02/Makefile -------------------------------------------------------------------------------- /module_02/ex02/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_02/ex02/main.cpp -------------------------------------------------------------------------------- /module_03/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_03/README.md -------------------------------------------------------------------------------- /module_03/ex00/ClapTrap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_03/ex00/ClapTrap.cpp -------------------------------------------------------------------------------- /module_03/ex00/ClapTrap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_03/ex00/ClapTrap.hpp -------------------------------------------------------------------------------- /module_03/ex00/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_03/ex00/Makefile -------------------------------------------------------------------------------- /module_03/ex00/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_03/ex00/main.cpp -------------------------------------------------------------------------------- /module_03/ex01/ClapTrap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_03/ex01/ClapTrap.cpp -------------------------------------------------------------------------------- /module_03/ex01/ClapTrap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_03/ex01/ClapTrap.hpp -------------------------------------------------------------------------------- /module_03/ex01/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_03/ex01/Makefile -------------------------------------------------------------------------------- /module_03/ex01/ScavTrap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_03/ex01/ScavTrap.cpp -------------------------------------------------------------------------------- /module_03/ex01/ScavTrap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_03/ex01/ScavTrap.hpp -------------------------------------------------------------------------------- /module_03/ex01/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_03/ex01/main.cpp -------------------------------------------------------------------------------- /module_03/ex02/ClapTrap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_03/ex02/ClapTrap.cpp -------------------------------------------------------------------------------- /module_03/ex02/ClapTrap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_03/ex02/ClapTrap.hpp -------------------------------------------------------------------------------- /module_03/ex02/FragTrap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_03/ex02/FragTrap.cpp -------------------------------------------------------------------------------- /module_03/ex02/FragTrap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_03/ex02/FragTrap.hpp -------------------------------------------------------------------------------- /module_03/ex02/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_03/ex02/Makefile -------------------------------------------------------------------------------- /module_03/ex02/ScavTrap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_03/ex02/ScavTrap.cpp -------------------------------------------------------------------------------- /module_03/ex02/ScavTrap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_03/ex02/ScavTrap.hpp -------------------------------------------------------------------------------- /module_03/ex02/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_03/ex02/main.cpp -------------------------------------------------------------------------------- /module_03/ex03/ClapTrap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_03/ex03/ClapTrap.cpp -------------------------------------------------------------------------------- /module_03/ex03/ClapTrap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_03/ex03/ClapTrap.hpp -------------------------------------------------------------------------------- /module_03/ex03/DiamondTrap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_03/ex03/DiamondTrap.cpp -------------------------------------------------------------------------------- /module_03/ex03/DiamondTrap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_03/ex03/DiamondTrap.hpp -------------------------------------------------------------------------------- /module_03/ex03/FragTrap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_03/ex03/FragTrap.cpp -------------------------------------------------------------------------------- /module_03/ex03/FragTrap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_03/ex03/FragTrap.hpp -------------------------------------------------------------------------------- /module_03/ex03/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_03/ex03/Makefile -------------------------------------------------------------------------------- /module_03/ex03/ScavTrap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_03/ex03/ScavTrap.cpp -------------------------------------------------------------------------------- /module_03/ex03/ScavTrap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_03/ex03/ScavTrap.hpp -------------------------------------------------------------------------------- /module_03/ex03/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_03/ex03/main.cpp -------------------------------------------------------------------------------- /module_04/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_04/README.md -------------------------------------------------------------------------------- /module_04/ex00/Animal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_04/ex00/Animal.cpp -------------------------------------------------------------------------------- /module_04/ex00/Animal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_04/ex00/Animal.hpp -------------------------------------------------------------------------------- /module_04/ex00/Cat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_04/ex00/Cat.cpp -------------------------------------------------------------------------------- /module_04/ex00/Cat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_04/ex00/Cat.hpp -------------------------------------------------------------------------------- /module_04/ex00/Dog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_04/ex00/Dog.cpp -------------------------------------------------------------------------------- /module_04/ex00/Dog.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_04/ex00/Dog.hpp -------------------------------------------------------------------------------- /module_04/ex00/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_04/ex00/Makefile -------------------------------------------------------------------------------- /module_04/ex00/WrongAnimal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_04/ex00/WrongAnimal.cpp -------------------------------------------------------------------------------- /module_04/ex00/WrongAnimal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_04/ex00/WrongAnimal.hpp -------------------------------------------------------------------------------- /module_04/ex00/WrongCat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_04/ex00/WrongCat.cpp -------------------------------------------------------------------------------- /module_04/ex00/WrongCat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_04/ex00/WrongCat.hpp -------------------------------------------------------------------------------- /module_04/ex00/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_04/ex00/main.cpp -------------------------------------------------------------------------------- /module_04/ex01/Animal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_04/ex01/Animal.cpp -------------------------------------------------------------------------------- /module_04/ex01/Animal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_04/ex01/Animal.hpp -------------------------------------------------------------------------------- /module_04/ex01/Brain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_04/ex01/Brain.cpp -------------------------------------------------------------------------------- /module_04/ex01/Brain.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_04/ex01/Brain.hpp -------------------------------------------------------------------------------- /module_04/ex01/Cat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_04/ex01/Cat.cpp -------------------------------------------------------------------------------- /module_04/ex01/Cat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_04/ex01/Cat.hpp -------------------------------------------------------------------------------- /module_04/ex01/Dog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_04/ex01/Dog.cpp -------------------------------------------------------------------------------- /module_04/ex01/Dog.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_04/ex01/Dog.hpp -------------------------------------------------------------------------------- /module_04/ex01/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_04/ex01/Makefile -------------------------------------------------------------------------------- /module_04/ex01/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_04/ex01/main.cpp -------------------------------------------------------------------------------- /module_04/ex02/Animal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_04/ex02/Animal.cpp -------------------------------------------------------------------------------- /module_04/ex02/Animal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_04/ex02/Animal.hpp -------------------------------------------------------------------------------- /module_04/ex02/Brain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_04/ex02/Brain.cpp -------------------------------------------------------------------------------- /module_04/ex02/Brain.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_04/ex02/Brain.hpp -------------------------------------------------------------------------------- /module_04/ex02/Cat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_04/ex02/Cat.cpp -------------------------------------------------------------------------------- /module_04/ex02/Cat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_04/ex02/Cat.hpp -------------------------------------------------------------------------------- /module_04/ex02/Dog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_04/ex02/Dog.cpp -------------------------------------------------------------------------------- /module_04/ex02/Dog.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_04/ex02/Dog.hpp -------------------------------------------------------------------------------- /module_04/ex02/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_04/ex02/Makefile -------------------------------------------------------------------------------- /module_04/ex02/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_04/ex02/main.cpp -------------------------------------------------------------------------------- /module_04/ex03/AMateria.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_04/ex03/AMateria.cpp -------------------------------------------------------------------------------- /module_04/ex03/AMateria.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_04/ex03/AMateria.hpp -------------------------------------------------------------------------------- /module_04/ex03/Character.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_04/ex03/Character.cpp -------------------------------------------------------------------------------- /module_04/ex03/Character.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_04/ex03/Character.hpp -------------------------------------------------------------------------------- /module_04/ex03/Cure.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_04/ex03/Cure.cpp -------------------------------------------------------------------------------- /module_04/ex03/Cure.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_04/ex03/Cure.hpp -------------------------------------------------------------------------------- /module_04/ex03/ICharacter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_04/ex03/ICharacter.hpp -------------------------------------------------------------------------------- /module_04/ex03/IMateriaSource.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_04/ex03/IMateriaSource.hpp -------------------------------------------------------------------------------- /module_04/ex03/Ice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_04/ex03/Ice.cpp -------------------------------------------------------------------------------- /module_04/ex03/Ice.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_04/ex03/Ice.hpp -------------------------------------------------------------------------------- /module_04/ex03/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_04/ex03/Makefile -------------------------------------------------------------------------------- /module_04/ex03/MateriaSource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_04/ex03/MateriaSource.cpp -------------------------------------------------------------------------------- /module_04/ex03/MateriaSource.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_04/ex03/MateriaSource.hpp -------------------------------------------------------------------------------- /module_04/ex03/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_04/ex03/main.cpp -------------------------------------------------------------------------------- /module_05/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_05/README.md -------------------------------------------------------------------------------- /module_05/ex00/Bureaucrat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_05/ex00/Bureaucrat.cpp -------------------------------------------------------------------------------- /module_05/ex00/Bureaucrat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_05/ex00/Bureaucrat.hpp -------------------------------------------------------------------------------- /module_05/ex00/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_05/ex00/Makefile -------------------------------------------------------------------------------- /module_05/ex00/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_05/ex00/main.cpp -------------------------------------------------------------------------------- /module_05/ex01/Bureaucrat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_05/ex01/Bureaucrat.cpp -------------------------------------------------------------------------------- /module_05/ex01/Bureaucrat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_05/ex01/Bureaucrat.hpp -------------------------------------------------------------------------------- /module_05/ex01/Form.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_05/ex01/Form.cpp -------------------------------------------------------------------------------- /module_05/ex01/Form.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_05/ex01/Form.hpp -------------------------------------------------------------------------------- /module_05/ex01/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_05/ex01/Makefile -------------------------------------------------------------------------------- /module_05/ex01/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_05/ex01/main.cpp -------------------------------------------------------------------------------- /module_05/ex02/AForm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_05/ex02/AForm.cpp -------------------------------------------------------------------------------- /module_05/ex02/AForm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_05/ex02/AForm.hpp -------------------------------------------------------------------------------- /module_05/ex02/Bureaucrat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_05/ex02/Bureaucrat.cpp -------------------------------------------------------------------------------- /module_05/ex02/Bureaucrat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_05/ex02/Bureaucrat.hpp -------------------------------------------------------------------------------- /module_05/ex02/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_05/ex02/Makefile -------------------------------------------------------------------------------- /module_05/ex02/PresidentialPardonForm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_05/ex02/PresidentialPardonForm.cpp -------------------------------------------------------------------------------- /module_05/ex02/PresidentialPardonForm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_05/ex02/PresidentialPardonForm.hpp -------------------------------------------------------------------------------- /module_05/ex02/RobotomyRequestForm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_05/ex02/RobotomyRequestForm.cpp -------------------------------------------------------------------------------- /module_05/ex02/RobotomyRequestForm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_05/ex02/RobotomyRequestForm.hpp -------------------------------------------------------------------------------- /module_05/ex02/ShrubberyCreationForm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_05/ex02/ShrubberyCreationForm.cpp -------------------------------------------------------------------------------- /module_05/ex02/ShrubberyCreationForm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_05/ex02/ShrubberyCreationForm.hpp -------------------------------------------------------------------------------- /module_05/ex02/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_05/ex02/main.cpp -------------------------------------------------------------------------------- /module_05/ex02/trees.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_05/ex02/trees.txt -------------------------------------------------------------------------------- /module_05/ex03/AForm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_05/ex03/AForm.cpp -------------------------------------------------------------------------------- /module_05/ex03/AForm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_05/ex03/AForm.hpp -------------------------------------------------------------------------------- /module_05/ex03/Bureaucrat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_05/ex03/Bureaucrat.cpp -------------------------------------------------------------------------------- /module_05/ex03/Bureaucrat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_05/ex03/Bureaucrat.hpp -------------------------------------------------------------------------------- /module_05/ex03/Intern.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_05/ex03/Intern.cpp -------------------------------------------------------------------------------- /module_05/ex03/Intern.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_05/ex03/Intern.hpp -------------------------------------------------------------------------------- /module_05/ex03/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_05/ex03/Makefile -------------------------------------------------------------------------------- /module_05/ex03/PresidentialPardonForm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_05/ex03/PresidentialPardonForm.cpp -------------------------------------------------------------------------------- /module_05/ex03/PresidentialPardonForm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_05/ex03/PresidentialPardonForm.hpp -------------------------------------------------------------------------------- /module_05/ex03/RobotomyRequestForm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_05/ex03/RobotomyRequestForm.cpp -------------------------------------------------------------------------------- /module_05/ex03/RobotomyRequestForm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_05/ex03/RobotomyRequestForm.hpp -------------------------------------------------------------------------------- /module_05/ex03/ShrubberyCreationForm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_05/ex03/ShrubberyCreationForm.cpp -------------------------------------------------------------------------------- /module_05/ex03/ShrubberyCreationForm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_05/ex03/ShrubberyCreationForm.hpp -------------------------------------------------------------------------------- /module_05/ex03/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_05/ex03/main.cpp -------------------------------------------------------------------------------- /module_05/ex03/trees.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_05/ex03/trees.txt -------------------------------------------------------------------------------- /module_06/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_06/README.md -------------------------------------------------------------------------------- /module_06/ex00/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_06/ex00/Makefile -------------------------------------------------------------------------------- /module_06/ex00/ScalarConversion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_06/ex00/ScalarConversion.cpp -------------------------------------------------------------------------------- /module_06/ex00/ScalarConversion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_06/ex00/ScalarConversion.hpp -------------------------------------------------------------------------------- /module_06/ex00/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_06/ex00/main.cpp -------------------------------------------------------------------------------- /module_06/ex00/tester.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_06/ex00/tester.sh -------------------------------------------------------------------------------- /module_06/ex01/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_06/ex01/Makefile -------------------------------------------------------------------------------- /module_06/ex01/deserialize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_06/ex01/deserialize.cpp -------------------------------------------------------------------------------- /module_06/ex01/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_06/ex01/main.cpp -------------------------------------------------------------------------------- /module_06/ex01/serialization.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_06/ex01/serialization.hpp -------------------------------------------------------------------------------- /module_06/ex01/serialize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_06/ex01/serialize.cpp -------------------------------------------------------------------------------- /module_06/ex02/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_06/ex02/Makefile -------------------------------------------------------------------------------- /module_06/ex02/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_06/ex02/main.cpp -------------------------------------------------------------------------------- /module_07/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_07/README.md -------------------------------------------------------------------------------- /module_07/ex00/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_07/ex00/Makefile -------------------------------------------------------------------------------- /module_07/ex00/Student.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_07/ex00/Student.cpp -------------------------------------------------------------------------------- /module_07/ex00/Student.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_07/ex00/Student.hpp -------------------------------------------------------------------------------- /module_07/ex00/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_07/ex00/main.cpp -------------------------------------------------------------------------------- /module_07/ex00/whatever.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_07/ex00/whatever.hpp -------------------------------------------------------------------------------- /module_07/ex01/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_07/ex01/Makefile -------------------------------------------------------------------------------- /module_07/ex01/Student.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_07/ex01/Student.cpp -------------------------------------------------------------------------------- /module_07/ex01/Student.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_07/ex01/Student.hpp -------------------------------------------------------------------------------- /module_07/ex01/iter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_07/ex01/iter.hpp -------------------------------------------------------------------------------- /module_07/ex01/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_07/ex01/main.cpp -------------------------------------------------------------------------------- /module_07/ex02/Array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_07/ex02/Array.hpp -------------------------------------------------------------------------------- /module_07/ex02/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_07/ex02/Makefile -------------------------------------------------------------------------------- /module_07/ex02/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_07/ex02/main.cpp -------------------------------------------------------------------------------- /module_08/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_08/README.md -------------------------------------------------------------------------------- /module_08/ex00/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_08/ex00/Makefile -------------------------------------------------------------------------------- /module_08/ex00/easyfind.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_08/ex00/easyfind.hpp -------------------------------------------------------------------------------- /module_08/ex00/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_08/ex00/main.cpp -------------------------------------------------------------------------------- /module_08/ex01/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_08/ex01/Makefile -------------------------------------------------------------------------------- /module_08/ex01/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_08/ex01/main.cpp -------------------------------------------------------------------------------- /module_08/ex01/span.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_08/ex01/span.cpp -------------------------------------------------------------------------------- /module_08/ex01/span.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_08/ex01/span.hpp -------------------------------------------------------------------------------- /module_08/ex02/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_08/ex02/Makefile -------------------------------------------------------------------------------- /module_08/ex02/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_08/ex02/main.cpp -------------------------------------------------------------------------------- /module_08/ex02/mutantstack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_08/ex02/mutantstack.cpp -------------------------------------------------------------------------------- /module_08/ex02/mutantstack.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulahemsi/piscine_cpp/HEAD/module_08/ex02/mutantstack.hpp --------------------------------------------------------------------------------