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