/* * * ********************************************************** * * Author: K. Holcomb * * Class describing some data about bird observations. * * Changelog: Modified from old student homework 20170410 * * * ********************************************************** * */ #include #include #include class birdData { //Input values. std::string commonName; std::vector observations; public: birdData(std::string, std::vector); std::string species_name(); std::vector stats(); std::vector minmax(std::vector years); };