/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* Peon.hpp :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: charles +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2020/04/13 20:50:54 by charles #+# #+# */ /* Updated: 2020/04/13 20:57:37 by charles ### ########.fr */ /* */ /* ************************************************************************** */ #ifndef PEON_HPP # define PEON_HPP # include # include # include "Victim.hpp" class Peon : public Victim { public: Peon(std::string name); void operator=(Peon const& other); Peon(Peon const& other); ~Peon(); virtual void getPolymorphed() const; private: Peon(); }; #endif