1
0
This repository has been archived on 2025-01-26. You can view files and clone it, but cannot push or open issues or pull requests.

26 lines
1.1 KiB
C++
Raw Normal View History

/* ************************************************************************** */
/* */
/* ::: :::::::: */
2024-12-06 16:06:57 +01:00
/* Cat.hpp :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: adjoly <adjoly@student.42angouleme.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/12/01 19:06:08 by adjoly #+# #+# */
2024-12-06 16:06:57 +01:00
/* Updated: 2024/12/06 15:52:20 by adjoly ### ########.fr */
/* */
/* ************************************************************************** */
#pragma once
2024-12-06 16:06:57 +01:00
#include "Animal.hpp"
class Cat : public Animal {
public:
Cat(void);
~Cat(void);
Cat(const Cat &);
Cat &operator=(const Cat &);
void makeSound(void) const;
};