29 lines
1 KiB
C++
29 lines
1 KiB
C++
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* Cat.hpp :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: rparodi <rparodi@student.42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2025/01/28 17:44:48 by rparodi #+# #+# */
|
|
/* Updated: 2025/01/30 13:41:27 by rparodi ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#ifndef CAT_HPP
|
|
#define CAT_HPP
|
|
|
|
#include "Animal.hpp"
|
|
#include <string>
|
|
|
|
class Cat : public Animal {
|
|
public:
|
|
Cat();
|
|
~Cat();
|
|
protected:
|
|
|
|
private:
|
|
|
|
};
|
|
|
|
#endif
|