#pragma once #include namespace meetup { typedef boost::gregorian::date date_t; class scheduler { int month_, year_; public: scheduler(int month, int year); date_t monteenth() const; }; }