// animals.h #ifndef ANIMALS__INCLUDED #define ANIMALS__INCLUDED #include #include #include // // class Animal // <> // class Animal { public: Animal(); ~Animal(); Animal(const Animal & other); Animal & operator=(const Animal & other); void init(); protected: private: }; #endif // ANIMALS__INCLUDED