#ifndef AMNIOTE_H #define AMNIOTE_H class amniote { private: int amnion; public: amniote(int init_amnion): amnion {init_amnion} {} }; #endif