#ifndef AMNIOTE_H #define AMNIOTE_H #include using namespace std; class amniote { private: int amnion; public: amniote(int init_amnion): amnion {init_amnion} {} void print() const {cout << "amnion = " << amnion << "\n";} }; #endif