style: respecting the order of the file

This commit is contained in:
Raphael 2025-01-31 18:02:30 +01:00
parent dff7b8c37a
commit 1c1e515ceb
11 changed files with 133 additions and 8 deletions

30
cpp04/ex00/Dog.hpp Normal file
View file

@ -0,0 +1,30 @@
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* Dog.hpp :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: rparodi <rparodi@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2025/01/28 17:44:51 by rparodi #+# #+# */
/* Updated: 2025/01/30 13:32:28 by rparodi ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef DOG_HPP
#define DOG_HPP
#include "Animal.hpp"
#include <string>
class Dog : public Animal {
public:
Dog();
~Dog();
std::string getType();
protected:
private:
};
#endif