#include "WrongCat.hpp" /********************************************* * CONSTRUCTORS *********************************************/ WrongCat::WrongCat() { type = "wrong_cat"; return; } WrongCat::WrongCat( WrongCat const & src ) { *this = src; return; } /********************************************* * DESTRUCTORS *********************************************/ WrongCat::~WrongCat() { return; } /********************************************* * OPERATORS *********************************************/ WrongCat & WrongCat::operator=( WrongCat const & rhs ) { WrongAnimal::operator=(rhs); return *this; } /********************************************* * PUBLIC MEMBER FUNCTIONS *********************************************/ void WrongCat::makeSound() const { std::cout << "*miaow*\n"; }