42_CPP04/ex02/src/WrongCat.hpp
2023-08-09 15:55:13 +00:00

17 lines
247 B
C++

#pragma once
#include <string>
#include "./WrongAnimal.hpp"
class WrongCat : public WrongAnimal
{
public:
WrongCat(const WrongCat& src);
WrongCat &operator=(const WrongCat& src);
WrongCat();
~WrongCat();
void makeSound() const;
};