42_CPP04/ex02/src/AAnimal.hpp
2023-08-09 16:20:39 +00:00

20 lines
275 B
C++

#pragma once
#include <string>
class AAnimal
{
public:
AAnimal();
AAnimal(const AAnimal& src);
AAnimal &operator=(const AAnimal& src);
virtual ~AAnimal();
std::string getType() const;
virtual void makeSound() const = 0;
protected:
std::string type;
};