├── CPP00 ├── ex00 │ ├── Makefile │ └── megaphone.cpp ├── ex01 │ ├── Makefile │ ├── includes │ │ ├── Contact.hpp │ │ └── PhoneBook.hpp │ ├── main.cpp │ └── srcs │ │ ├── Contact.cpp │ │ └── PhoneBook.cpp └── ex02 │ ├── Makefile │ ├── includes │ └── Account.hpp │ ├── srcs │ └── Account.cpp │ └── tests.cpp ├── CPP01 ├── ex00 │ ├── Makefile │ ├── includes │ │ └── Zombie.hpp │ ├── main.cpp │ └── srcs │ │ ├── Zombie.cpp │ │ ├── newZombie.cpp │ │ └── randomChump.cpp ├── ex01 │ ├── Makefile │ ├── includes │ │ └── Zombie.hpp │ ├── main.cpp │ └── srcs │ │ ├── Zombie.cpp │ │ └── zombieHorde.cpp ├── ex02 │ ├── Makefile │ └── main.cpp ├── ex03 │ ├── Makefile │ ├── includes │ │ ├── HumanA.hpp │ │ ├── HumanB.hpp │ │ └── Weapon.hpp │ ├── main.cpp │ └── srcs │ │ ├── HumanA.cpp │ │ ├── HumanB.cpp │ │ └── Weapon.cpp ├── ex04 │ ├── Makefile │ ├── main.cpp │ └── test.txt ├── ex05 │ ├── Makefile │ ├── includes │ │ └── Harl.hpp │ ├── main.cpp │ └── srcs │ │ └── Harl.cpp └── ex06 │ ├── Makefile │ ├── includes │ └── Harl.hpp │ ├── main.cpp │ └── srcs │ └── Harl.cpp ├── CPP02 ├── ex00 │ ├── Makefile │ ├── includes │ │ └── Fixed.hpp │ ├── main.cpp │ └── srcs │ │ └── Fixed.cpp ├── ex01 │ ├── Makefile │ ├── includes │ │ └── Fixed.hpp │ ├── main.cpp │ └── srcs │ │ └── Fixed.cpp ├── ex02 │ ├── Makefile │ ├── includes │ │ └── Fixed.hpp │ ├── main.cpp │ └── srcs │ │ └── Fixed.cpp └── ex03 │ ├── Makefile │ ├── includes │ ├── BSP.hpp │ ├── Fixed.hpp │ └── Point.hpp │ ├── main.cpp │ └── srcs │ ├── Fixed.cpp │ ├── Point.cpp │ └── bsp.cpp ├── CPP03 ├── ex00 │ ├── Makefile │ ├── includes │ │ └── ClapTrap.hpp │ ├── main.cpp │ └── srcs │ │ └── ClapTrap.cpp ├── ex01 │ ├── Makefile │ ├── includes │ │ ├── ClapTrap.hpp │ │ └── ScavTrap.hpp │ ├── main.cpp │ └── srcs │ │ ├── ClapTrap.cpp │ │ └── ScavTrap.cpp ├── ex02 │ ├── Makefile │ ├── includes │ │ ├── ClapTrap.hpp │ │ ├── FragTrap.hpp │ │ └── ScavTrap.hpp │ ├── main.cpp │ └── srcs │ │ ├── ClapTrap.cpp │ │ ├── FragTrap.cpp │ │ └── ScavTrap.cpp └── ex03 │ ├── Makefile │ ├── includes │ ├── ClapTrap.hpp │ ├── DiamondTrap.hpp │ ├── FragTrap.hpp │ └── ScavTrap.hpp │ ├── main.cpp │ └── srcs │ ├── ClapTrap.cpp │ ├── DiamondTrap.cpp │ ├── FragTrap.cpp │ └── ScavTrap.cpp ├── CPP04 ├── ex00 │ ├── Makefile │ ├── includes │ │ ├── Animal.hpp │ │ ├── Cat.hpp │ │ ├── Dog.hpp │ │ ├── WrongAnimal.hpp │ │ └── WrongCat.hpp │ ├── main.cpp │ └── srcs │ │ ├── Animal.cpp │ │ ├── Cat.cpp │ │ ├── Dog.cpp │ │ ├── WrongAnimal.cpp │ │ └── WrongCat.cpp ├── ex01 │ ├── Makefile │ ├── includes │ │ ├── Animal.hpp │ │ ├── Brain.hpp │ │ ├── Cat.hpp │ │ ├── Dog.hpp │ │ ├── WrongAnimal.hpp │ │ └── WrongCat.hpp │ ├── main.cpp │ └── srcs │ │ ├── Animal.cpp │ │ ├── Brain.cpp │ │ ├── Cat.cpp │ │ ├── Dog.cpp │ │ ├── WrongAnimal.cpp │ │ └── WrongCat.cpp └── ex02 │ ├── Makefile │ ├── includes │ ├── AAnimal.hpp │ ├── Brain.hpp │ ├── Cat.hpp │ ├── Dog.hpp │ ├── WrongAnimal.hpp │ └── WrongCat.hpp │ ├── main.cpp │ └── srcs │ ├── AAnimal.cpp │ ├── Brain.cpp │ ├── Cat.cpp │ ├── Dog.cpp │ ├── WrongAnimal.cpp │ └── WrongCat.cpp ├── CPP05 ├── ex00 │ ├── Makefile │ ├── includes │ │ └── Bureaucrat.hpp │ ├── main.cpp │ └── srcs │ │ └── Bureaucrat.cpp ├── ex01 │ ├── Makefile │ ├── includes │ │ ├── Bureaucrat.hpp │ │ └── Form.hpp │ ├── main.cpp │ └── srcs │ │ ├── Bureaucrat.cpp │ │ └── Form.cpp ├── ex02 │ ├── Makefile │ ├── includes │ │ ├── AForm.hpp │ │ ├── Bureaucrat.hpp │ │ ├── PresidentialPardonForm.hpp │ │ ├── RobotomyRequestForm.hpp │ │ └── ShrubberyCreationForm.hpp │ ├── main.cpp │ └── srcs │ │ ├── AForm.cpp │ │ ├── Bureaucrat.cpp │ │ ├── PresidentialPardonForm.cpp │ │ ├── RobotomyRequestForm.cpp │ │ └── ShrubberyCreationForm.cpp └── ex03 │ ├── Makefile │ ├── includes │ ├── AForm.hpp │ ├── Bureaucrat.hpp │ ├── Intern.hpp │ ├── PresidentialPardonForm.hpp │ ├── RobotomyRequestForm.hpp │ └── ShrubberyCreationForm.hpp │ ├── main.cpp │ └── srcs │ ├── AForm.cpp │ ├── Bureaucrat.cpp │ ├── Intern.cpp │ ├── PresidentialPardonForm.cpp │ ├── RobotomyRequestForm.cpp │ └── ShrubberyCreationForm.cpp ├── CPP06 ├── ex00 │ ├── Makefile │ ├── includes │ │ └── ScalarConverter.hpp │ ├── main.cpp │ └── srcs │ │ └── ScalarConverter.cpp ├── ex01 │ ├── Makefile │ ├── includes │ │ ├── Data.hpp │ │ └── Serialization.hpp │ ├── main.cpp │ └── srcs │ │ └── Serialization.cpp └── ex02 │ ├── Makefile │ ├── includes │ ├── A.hpp │ ├── B.hpp │ ├── Base.hpp │ └── C.hpp │ ├── main.cpp │ └── srcs │ ├── Base.cpp │ └── functions.cpp ├── CPP07 ├── ex00 │ ├── Makefile │ ├── includes │ │ └── whatever.hpp │ └── main.cpp ├── ex01 │ ├── Makefile │ ├── includes │ │ └── iter.hpp │ └── main.cpp └── ex02 │ ├── Makefile │ ├── includes │ └── Array.hpp │ └── main.cpp ├── CPP08 ├── ex00 │ ├── Makefile │ ├── includes │ │ └── easyfind.hpp │ └── main.cpp ├── ex01 │ ├── Makefile │ ├── includes │ │ └── Span.hpp │ ├── main.cpp │ └── srcs │ │ └── Span.cpp └── ex02 │ ├── Makefile │ ├── includes │ └── MutantStack.hpp │ └── main.cpp ├── CPP09 ├── ex00 │ ├── Makefile │ ├── data.csv │ ├── includes │ │ └── BitcoinExchange.hpp │ ├── input.txt │ ├── main.cpp │ └── srcs │ │ └── BitcoinExchange.cpp ├── ex01 │ ├── Makefile │ ├── includes │ │ └── RPN.hpp │ ├── main.cpp │ └── srcs │ │ └── RPN.cpp └── ex02 │ ├── Makefile │ ├── includes │ └── PmergeMe.hpp │ ├── main.cpp │ └── srcs │ └── PmergeMe.cpp └── README.md /CPP00/ex00/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP00/ex00/Makefile -------------------------------------------------------------------------------- /CPP00/ex00/megaphone.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP00/ex00/megaphone.cpp -------------------------------------------------------------------------------- /CPP00/ex01/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP00/ex01/Makefile -------------------------------------------------------------------------------- /CPP00/ex01/includes/Contact.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP00/ex01/includes/Contact.hpp -------------------------------------------------------------------------------- /CPP00/ex01/includes/PhoneBook.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP00/ex01/includes/PhoneBook.hpp -------------------------------------------------------------------------------- /CPP00/ex01/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP00/ex01/main.cpp -------------------------------------------------------------------------------- /CPP00/ex01/srcs/Contact.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP00/ex01/srcs/Contact.cpp -------------------------------------------------------------------------------- /CPP00/ex01/srcs/PhoneBook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP00/ex01/srcs/PhoneBook.cpp -------------------------------------------------------------------------------- /CPP00/ex02/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP00/ex02/Makefile -------------------------------------------------------------------------------- /CPP00/ex02/includes/Account.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP00/ex02/includes/Account.hpp -------------------------------------------------------------------------------- /CPP00/ex02/srcs/Account.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP00/ex02/srcs/Account.cpp -------------------------------------------------------------------------------- /CPP00/ex02/tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP00/ex02/tests.cpp -------------------------------------------------------------------------------- /CPP01/ex00/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP01/ex00/Makefile -------------------------------------------------------------------------------- /CPP01/ex00/includes/Zombie.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP01/ex00/includes/Zombie.hpp -------------------------------------------------------------------------------- /CPP01/ex00/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP01/ex00/main.cpp -------------------------------------------------------------------------------- /CPP01/ex00/srcs/Zombie.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP01/ex00/srcs/Zombie.cpp -------------------------------------------------------------------------------- /CPP01/ex00/srcs/newZombie.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP01/ex00/srcs/newZombie.cpp -------------------------------------------------------------------------------- /CPP01/ex00/srcs/randomChump.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP01/ex00/srcs/randomChump.cpp -------------------------------------------------------------------------------- /CPP01/ex01/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP01/ex01/Makefile -------------------------------------------------------------------------------- /CPP01/ex01/includes/Zombie.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP01/ex01/includes/Zombie.hpp -------------------------------------------------------------------------------- /CPP01/ex01/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP01/ex01/main.cpp -------------------------------------------------------------------------------- /CPP01/ex01/srcs/Zombie.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP01/ex01/srcs/Zombie.cpp -------------------------------------------------------------------------------- /CPP01/ex01/srcs/zombieHorde.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP01/ex01/srcs/zombieHorde.cpp -------------------------------------------------------------------------------- /CPP01/ex02/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP01/ex02/Makefile -------------------------------------------------------------------------------- /CPP01/ex02/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP01/ex02/main.cpp -------------------------------------------------------------------------------- /CPP01/ex03/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP01/ex03/Makefile -------------------------------------------------------------------------------- /CPP01/ex03/includes/HumanA.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP01/ex03/includes/HumanA.hpp -------------------------------------------------------------------------------- /CPP01/ex03/includes/HumanB.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP01/ex03/includes/HumanB.hpp -------------------------------------------------------------------------------- /CPP01/ex03/includes/Weapon.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP01/ex03/includes/Weapon.hpp -------------------------------------------------------------------------------- /CPP01/ex03/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP01/ex03/main.cpp -------------------------------------------------------------------------------- /CPP01/ex03/srcs/HumanA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP01/ex03/srcs/HumanA.cpp -------------------------------------------------------------------------------- /CPP01/ex03/srcs/HumanB.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP01/ex03/srcs/HumanB.cpp -------------------------------------------------------------------------------- /CPP01/ex03/srcs/Weapon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP01/ex03/srcs/Weapon.cpp -------------------------------------------------------------------------------- /CPP01/ex04/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP01/ex04/Makefile -------------------------------------------------------------------------------- /CPP01/ex04/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP01/ex04/main.cpp -------------------------------------------------------------------------------- /CPP01/ex04/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP01/ex04/test.txt -------------------------------------------------------------------------------- /CPP01/ex05/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP01/ex05/Makefile -------------------------------------------------------------------------------- /CPP01/ex05/includes/Harl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP01/ex05/includes/Harl.hpp -------------------------------------------------------------------------------- /CPP01/ex05/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP01/ex05/main.cpp -------------------------------------------------------------------------------- /CPP01/ex05/srcs/Harl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP01/ex05/srcs/Harl.cpp -------------------------------------------------------------------------------- /CPP01/ex06/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP01/ex06/Makefile -------------------------------------------------------------------------------- /CPP01/ex06/includes/Harl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP01/ex06/includes/Harl.hpp -------------------------------------------------------------------------------- /CPP01/ex06/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP01/ex06/main.cpp -------------------------------------------------------------------------------- /CPP01/ex06/srcs/Harl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP01/ex06/srcs/Harl.cpp -------------------------------------------------------------------------------- /CPP02/ex00/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP02/ex00/Makefile -------------------------------------------------------------------------------- /CPP02/ex00/includes/Fixed.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP02/ex00/includes/Fixed.hpp -------------------------------------------------------------------------------- /CPP02/ex00/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP02/ex00/main.cpp -------------------------------------------------------------------------------- /CPP02/ex00/srcs/Fixed.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP02/ex00/srcs/Fixed.cpp -------------------------------------------------------------------------------- /CPP02/ex01/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP02/ex01/Makefile -------------------------------------------------------------------------------- /CPP02/ex01/includes/Fixed.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP02/ex01/includes/Fixed.hpp -------------------------------------------------------------------------------- /CPP02/ex01/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP02/ex01/main.cpp -------------------------------------------------------------------------------- /CPP02/ex01/srcs/Fixed.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP02/ex01/srcs/Fixed.cpp -------------------------------------------------------------------------------- /CPP02/ex02/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP02/ex02/Makefile -------------------------------------------------------------------------------- /CPP02/ex02/includes/Fixed.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP02/ex02/includes/Fixed.hpp -------------------------------------------------------------------------------- /CPP02/ex02/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP02/ex02/main.cpp -------------------------------------------------------------------------------- /CPP02/ex02/srcs/Fixed.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP02/ex02/srcs/Fixed.cpp -------------------------------------------------------------------------------- /CPP02/ex03/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP02/ex03/Makefile -------------------------------------------------------------------------------- /CPP02/ex03/includes/BSP.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP02/ex03/includes/BSP.hpp -------------------------------------------------------------------------------- /CPP02/ex03/includes/Fixed.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP02/ex03/includes/Fixed.hpp -------------------------------------------------------------------------------- /CPP02/ex03/includes/Point.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP02/ex03/includes/Point.hpp -------------------------------------------------------------------------------- /CPP02/ex03/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP02/ex03/main.cpp -------------------------------------------------------------------------------- /CPP02/ex03/srcs/Fixed.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP02/ex03/srcs/Fixed.cpp -------------------------------------------------------------------------------- /CPP02/ex03/srcs/Point.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP02/ex03/srcs/Point.cpp -------------------------------------------------------------------------------- /CPP02/ex03/srcs/bsp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP02/ex03/srcs/bsp.cpp -------------------------------------------------------------------------------- /CPP03/ex00/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP03/ex00/Makefile -------------------------------------------------------------------------------- /CPP03/ex00/includes/ClapTrap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP03/ex00/includes/ClapTrap.hpp -------------------------------------------------------------------------------- /CPP03/ex00/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP03/ex00/main.cpp -------------------------------------------------------------------------------- /CPP03/ex00/srcs/ClapTrap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP03/ex00/srcs/ClapTrap.cpp -------------------------------------------------------------------------------- /CPP03/ex01/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP03/ex01/Makefile -------------------------------------------------------------------------------- /CPP03/ex01/includes/ClapTrap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP03/ex01/includes/ClapTrap.hpp -------------------------------------------------------------------------------- /CPP03/ex01/includes/ScavTrap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP03/ex01/includes/ScavTrap.hpp -------------------------------------------------------------------------------- /CPP03/ex01/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP03/ex01/main.cpp -------------------------------------------------------------------------------- /CPP03/ex01/srcs/ClapTrap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP03/ex01/srcs/ClapTrap.cpp -------------------------------------------------------------------------------- /CPP03/ex01/srcs/ScavTrap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP03/ex01/srcs/ScavTrap.cpp -------------------------------------------------------------------------------- /CPP03/ex02/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP03/ex02/Makefile -------------------------------------------------------------------------------- /CPP03/ex02/includes/ClapTrap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP03/ex02/includes/ClapTrap.hpp -------------------------------------------------------------------------------- /CPP03/ex02/includes/FragTrap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP03/ex02/includes/FragTrap.hpp -------------------------------------------------------------------------------- /CPP03/ex02/includes/ScavTrap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP03/ex02/includes/ScavTrap.hpp -------------------------------------------------------------------------------- /CPP03/ex02/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP03/ex02/main.cpp -------------------------------------------------------------------------------- /CPP03/ex02/srcs/ClapTrap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP03/ex02/srcs/ClapTrap.cpp -------------------------------------------------------------------------------- /CPP03/ex02/srcs/FragTrap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP03/ex02/srcs/FragTrap.cpp -------------------------------------------------------------------------------- /CPP03/ex02/srcs/ScavTrap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP03/ex02/srcs/ScavTrap.cpp -------------------------------------------------------------------------------- /CPP03/ex03/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP03/ex03/Makefile -------------------------------------------------------------------------------- /CPP03/ex03/includes/ClapTrap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP03/ex03/includes/ClapTrap.hpp -------------------------------------------------------------------------------- /CPP03/ex03/includes/DiamondTrap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP03/ex03/includes/DiamondTrap.hpp -------------------------------------------------------------------------------- /CPP03/ex03/includes/FragTrap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP03/ex03/includes/FragTrap.hpp -------------------------------------------------------------------------------- /CPP03/ex03/includes/ScavTrap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP03/ex03/includes/ScavTrap.hpp -------------------------------------------------------------------------------- /CPP03/ex03/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP03/ex03/main.cpp -------------------------------------------------------------------------------- /CPP03/ex03/srcs/ClapTrap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP03/ex03/srcs/ClapTrap.cpp -------------------------------------------------------------------------------- /CPP03/ex03/srcs/DiamondTrap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP03/ex03/srcs/DiamondTrap.cpp -------------------------------------------------------------------------------- /CPP03/ex03/srcs/FragTrap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP03/ex03/srcs/FragTrap.cpp -------------------------------------------------------------------------------- /CPP03/ex03/srcs/ScavTrap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP03/ex03/srcs/ScavTrap.cpp -------------------------------------------------------------------------------- /CPP04/ex00/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP04/ex00/Makefile -------------------------------------------------------------------------------- /CPP04/ex00/includes/Animal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP04/ex00/includes/Animal.hpp -------------------------------------------------------------------------------- /CPP04/ex00/includes/Cat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP04/ex00/includes/Cat.hpp -------------------------------------------------------------------------------- /CPP04/ex00/includes/Dog.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP04/ex00/includes/Dog.hpp -------------------------------------------------------------------------------- /CPP04/ex00/includes/WrongAnimal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP04/ex00/includes/WrongAnimal.hpp -------------------------------------------------------------------------------- /CPP04/ex00/includes/WrongCat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP04/ex00/includes/WrongCat.hpp -------------------------------------------------------------------------------- /CPP04/ex00/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP04/ex00/main.cpp -------------------------------------------------------------------------------- /CPP04/ex00/srcs/Animal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP04/ex00/srcs/Animal.cpp -------------------------------------------------------------------------------- /CPP04/ex00/srcs/Cat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP04/ex00/srcs/Cat.cpp -------------------------------------------------------------------------------- /CPP04/ex00/srcs/Dog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP04/ex00/srcs/Dog.cpp -------------------------------------------------------------------------------- /CPP04/ex00/srcs/WrongAnimal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP04/ex00/srcs/WrongAnimal.cpp -------------------------------------------------------------------------------- /CPP04/ex00/srcs/WrongCat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP04/ex00/srcs/WrongCat.cpp -------------------------------------------------------------------------------- /CPP04/ex01/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP04/ex01/Makefile -------------------------------------------------------------------------------- /CPP04/ex01/includes/Animal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP04/ex01/includes/Animal.hpp -------------------------------------------------------------------------------- /CPP04/ex01/includes/Brain.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP04/ex01/includes/Brain.hpp -------------------------------------------------------------------------------- /CPP04/ex01/includes/Cat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP04/ex01/includes/Cat.hpp -------------------------------------------------------------------------------- /CPP04/ex01/includes/Dog.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP04/ex01/includes/Dog.hpp -------------------------------------------------------------------------------- /CPP04/ex01/includes/WrongAnimal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP04/ex01/includes/WrongAnimal.hpp -------------------------------------------------------------------------------- /CPP04/ex01/includes/WrongCat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP04/ex01/includes/WrongCat.hpp -------------------------------------------------------------------------------- /CPP04/ex01/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP04/ex01/main.cpp -------------------------------------------------------------------------------- /CPP04/ex01/srcs/Animal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP04/ex01/srcs/Animal.cpp -------------------------------------------------------------------------------- /CPP04/ex01/srcs/Brain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP04/ex01/srcs/Brain.cpp -------------------------------------------------------------------------------- /CPP04/ex01/srcs/Cat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP04/ex01/srcs/Cat.cpp -------------------------------------------------------------------------------- /CPP04/ex01/srcs/Dog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP04/ex01/srcs/Dog.cpp -------------------------------------------------------------------------------- /CPP04/ex01/srcs/WrongAnimal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP04/ex01/srcs/WrongAnimal.cpp -------------------------------------------------------------------------------- /CPP04/ex01/srcs/WrongCat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP04/ex01/srcs/WrongCat.cpp -------------------------------------------------------------------------------- /CPP04/ex02/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP04/ex02/Makefile -------------------------------------------------------------------------------- /CPP04/ex02/includes/AAnimal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP04/ex02/includes/AAnimal.hpp -------------------------------------------------------------------------------- /CPP04/ex02/includes/Brain.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP04/ex02/includes/Brain.hpp -------------------------------------------------------------------------------- /CPP04/ex02/includes/Cat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP04/ex02/includes/Cat.hpp -------------------------------------------------------------------------------- /CPP04/ex02/includes/Dog.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP04/ex02/includes/Dog.hpp -------------------------------------------------------------------------------- /CPP04/ex02/includes/WrongAnimal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP04/ex02/includes/WrongAnimal.hpp -------------------------------------------------------------------------------- /CPP04/ex02/includes/WrongCat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP04/ex02/includes/WrongCat.hpp -------------------------------------------------------------------------------- /CPP04/ex02/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP04/ex02/main.cpp -------------------------------------------------------------------------------- /CPP04/ex02/srcs/AAnimal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP04/ex02/srcs/AAnimal.cpp -------------------------------------------------------------------------------- /CPP04/ex02/srcs/Brain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP04/ex02/srcs/Brain.cpp -------------------------------------------------------------------------------- /CPP04/ex02/srcs/Cat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP04/ex02/srcs/Cat.cpp -------------------------------------------------------------------------------- /CPP04/ex02/srcs/Dog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP04/ex02/srcs/Dog.cpp -------------------------------------------------------------------------------- /CPP04/ex02/srcs/WrongAnimal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP04/ex02/srcs/WrongAnimal.cpp -------------------------------------------------------------------------------- /CPP04/ex02/srcs/WrongCat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP04/ex02/srcs/WrongCat.cpp -------------------------------------------------------------------------------- /CPP05/ex00/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP05/ex00/Makefile -------------------------------------------------------------------------------- /CPP05/ex00/includes/Bureaucrat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP05/ex00/includes/Bureaucrat.hpp -------------------------------------------------------------------------------- /CPP05/ex00/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP05/ex00/main.cpp -------------------------------------------------------------------------------- /CPP05/ex00/srcs/Bureaucrat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP05/ex00/srcs/Bureaucrat.cpp -------------------------------------------------------------------------------- /CPP05/ex01/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP05/ex01/Makefile -------------------------------------------------------------------------------- /CPP05/ex01/includes/Bureaucrat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP05/ex01/includes/Bureaucrat.hpp -------------------------------------------------------------------------------- /CPP05/ex01/includes/Form.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP05/ex01/includes/Form.hpp -------------------------------------------------------------------------------- /CPP05/ex01/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP05/ex01/main.cpp -------------------------------------------------------------------------------- /CPP05/ex01/srcs/Bureaucrat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP05/ex01/srcs/Bureaucrat.cpp -------------------------------------------------------------------------------- /CPP05/ex01/srcs/Form.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP05/ex01/srcs/Form.cpp -------------------------------------------------------------------------------- /CPP05/ex02/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP05/ex02/Makefile -------------------------------------------------------------------------------- /CPP05/ex02/includes/AForm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP05/ex02/includes/AForm.hpp -------------------------------------------------------------------------------- /CPP05/ex02/includes/Bureaucrat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP05/ex02/includes/Bureaucrat.hpp -------------------------------------------------------------------------------- /CPP05/ex02/includes/PresidentialPardonForm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP05/ex02/includes/PresidentialPardonForm.hpp -------------------------------------------------------------------------------- /CPP05/ex02/includes/RobotomyRequestForm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP05/ex02/includes/RobotomyRequestForm.hpp -------------------------------------------------------------------------------- /CPP05/ex02/includes/ShrubberyCreationForm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP05/ex02/includes/ShrubberyCreationForm.hpp -------------------------------------------------------------------------------- /CPP05/ex02/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP05/ex02/main.cpp -------------------------------------------------------------------------------- /CPP05/ex02/srcs/AForm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP05/ex02/srcs/AForm.cpp -------------------------------------------------------------------------------- /CPP05/ex02/srcs/Bureaucrat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP05/ex02/srcs/Bureaucrat.cpp -------------------------------------------------------------------------------- /CPP05/ex02/srcs/PresidentialPardonForm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP05/ex02/srcs/PresidentialPardonForm.cpp -------------------------------------------------------------------------------- /CPP05/ex02/srcs/RobotomyRequestForm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP05/ex02/srcs/RobotomyRequestForm.cpp -------------------------------------------------------------------------------- /CPP05/ex02/srcs/ShrubberyCreationForm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP05/ex02/srcs/ShrubberyCreationForm.cpp -------------------------------------------------------------------------------- /CPP05/ex03/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP05/ex03/Makefile -------------------------------------------------------------------------------- /CPP05/ex03/includes/AForm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP05/ex03/includes/AForm.hpp -------------------------------------------------------------------------------- /CPP05/ex03/includes/Bureaucrat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP05/ex03/includes/Bureaucrat.hpp -------------------------------------------------------------------------------- /CPP05/ex03/includes/Intern.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP05/ex03/includes/Intern.hpp -------------------------------------------------------------------------------- /CPP05/ex03/includes/PresidentialPardonForm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP05/ex03/includes/PresidentialPardonForm.hpp -------------------------------------------------------------------------------- /CPP05/ex03/includes/RobotomyRequestForm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP05/ex03/includes/RobotomyRequestForm.hpp -------------------------------------------------------------------------------- /CPP05/ex03/includes/ShrubberyCreationForm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP05/ex03/includes/ShrubberyCreationForm.hpp -------------------------------------------------------------------------------- /CPP05/ex03/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP05/ex03/main.cpp -------------------------------------------------------------------------------- /CPP05/ex03/srcs/AForm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP05/ex03/srcs/AForm.cpp -------------------------------------------------------------------------------- /CPP05/ex03/srcs/Bureaucrat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP05/ex03/srcs/Bureaucrat.cpp -------------------------------------------------------------------------------- /CPP05/ex03/srcs/Intern.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP05/ex03/srcs/Intern.cpp -------------------------------------------------------------------------------- /CPP05/ex03/srcs/PresidentialPardonForm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP05/ex03/srcs/PresidentialPardonForm.cpp -------------------------------------------------------------------------------- /CPP05/ex03/srcs/RobotomyRequestForm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP05/ex03/srcs/RobotomyRequestForm.cpp -------------------------------------------------------------------------------- /CPP05/ex03/srcs/ShrubberyCreationForm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP05/ex03/srcs/ShrubberyCreationForm.cpp -------------------------------------------------------------------------------- /CPP06/ex00/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP06/ex00/Makefile -------------------------------------------------------------------------------- /CPP06/ex00/includes/ScalarConverter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP06/ex00/includes/ScalarConverter.hpp -------------------------------------------------------------------------------- /CPP06/ex00/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP06/ex00/main.cpp -------------------------------------------------------------------------------- /CPP06/ex00/srcs/ScalarConverter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP06/ex00/srcs/ScalarConverter.cpp -------------------------------------------------------------------------------- /CPP06/ex01/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP06/ex01/Makefile -------------------------------------------------------------------------------- /CPP06/ex01/includes/Data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP06/ex01/includes/Data.hpp -------------------------------------------------------------------------------- /CPP06/ex01/includes/Serialization.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP06/ex01/includes/Serialization.hpp -------------------------------------------------------------------------------- /CPP06/ex01/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP06/ex01/main.cpp -------------------------------------------------------------------------------- /CPP06/ex01/srcs/Serialization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP06/ex01/srcs/Serialization.cpp -------------------------------------------------------------------------------- /CPP06/ex02/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP06/ex02/Makefile -------------------------------------------------------------------------------- /CPP06/ex02/includes/A.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP06/ex02/includes/A.hpp -------------------------------------------------------------------------------- /CPP06/ex02/includes/B.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP06/ex02/includes/B.hpp -------------------------------------------------------------------------------- /CPP06/ex02/includes/Base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP06/ex02/includes/Base.hpp -------------------------------------------------------------------------------- /CPP06/ex02/includes/C.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP06/ex02/includes/C.hpp -------------------------------------------------------------------------------- /CPP06/ex02/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP06/ex02/main.cpp -------------------------------------------------------------------------------- /CPP06/ex02/srcs/Base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP06/ex02/srcs/Base.cpp -------------------------------------------------------------------------------- /CPP06/ex02/srcs/functions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP06/ex02/srcs/functions.cpp -------------------------------------------------------------------------------- /CPP07/ex00/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP07/ex00/Makefile -------------------------------------------------------------------------------- /CPP07/ex00/includes/whatever.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP07/ex00/includes/whatever.hpp -------------------------------------------------------------------------------- /CPP07/ex00/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP07/ex00/main.cpp -------------------------------------------------------------------------------- /CPP07/ex01/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP07/ex01/Makefile -------------------------------------------------------------------------------- /CPP07/ex01/includes/iter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP07/ex01/includes/iter.hpp -------------------------------------------------------------------------------- /CPP07/ex01/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP07/ex01/main.cpp -------------------------------------------------------------------------------- /CPP07/ex02/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP07/ex02/Makefile -------------------------------------------------------------------------------- /CPP07/ex02/includes/Array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP07/ex02/includes/Array.hpp -------------------------------------------------------------------------------- /CPP07/ex02/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP07/ex02/main.cpp -------------------------------------------------------------------------------- /CPP08/ex00/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP08/ex00/Makefile -------------------------------------------------------------------------------- /CPP08/ex00/includes/easyfind.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP08/ex00/includes/easyfind.hpp -------------------------------------------------------------------------------- /CPP08/ex00/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP08/ex00/main.cpp -------------------------------------------------------------------------------- /CPP08/ex01/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP08/ex01/Makefile -------------------------------------------------------------------------------- /CPP08/ex01/includes/Span.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP08/ex01/includes/Span.hpp -------------------------------------------------------------------------------- /CPP08/ex01/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP08/ex01/main.cpp -------------------------------------------------------------------------------- /CPP08/ex01/srcs/Span.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP08/ex01/srcs/Span.cpp -------------------------------------------------------------------------------- /CPP08/ex02/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP08/ex02/Makefile -------------------------------------------------------------------------------- /CPP08/ex02/includes/MutantStack.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP08/ex02/includes/MutantStack.hpp -------------------------------------------------------------------------------- /CPP08/ex02/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP08/ex02/main.cpp -------------------------------------------------------------------------------- /CPP09/ex00/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP09/ex00/Makefile -------------------------------------------------------------------------------- /CPP09/ex00/data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP09/ex00/data.csv -------------------------------------------------------------------------------- /CPP09/ex00/includes/BitcoinExchange.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP09/ex00/includes/BitcoinExchange.hpp -------------------------------------------------------------------------------- /CPP09/ex00/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP09/ex00/input.txt -------------------------------------------------------------------------------- /CPP09/ex00/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP09/ex00/main.cpp -------------------------------------------------------------------------------- /CPP09/ex00/srcs/BitcoinExchange.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP09/ex00/srcs/BitcoinExchange.cpp -------------------------------------------------------------------------------- /CPP09/ex01/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP09/ex01/Makefile -------------------------------------------------------------------------------- /CPP09/ex01/includes/RPN.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP09/ex01/includes/RPN.hpp -------------------------------------------------------------------------------- /CPP09/ex01/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP09/ex01/main.cpp -------------------------------------------------------------------------------- /CPP09/ex01/srcs/RPN.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP09/ex01/srcs/RPN.cpp -------------------------------------------------------------------------------- /CPP09/ex02/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP09/ex02/Makefile -------------------------------------------------------------------------------- /CPP09/ex02/includes/PmergeMe.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP09/ex02/includes/PmergeMe.hpp -------------------------------------------------------------------------------- /CPP09/ex02/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP09/ex02/main.cpp -------------------------------------------------------------------------------- /CPP09/ex02/srcs/PmergeMe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/CPP09/ex02/srcs/PmergeMe.cpp -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kuninoto/42_CPP_Modules/HEAD/README.md --------------------------------------------------------------------------------