21 lines
252 B
C++
21 lines
252 B
C++
#pragma once
|
|
|
|
#include <boost/date_time/gregorian/gregorian.hpp>
|
|
|
|
namespace meetup {
|
|
|
|
typedef boost::gregorian::date date_t;
|
|
|
|
class scheduler
|
|
{
|
|
int month_, year_;
|
|
|
|
public:
|
|
|
|
scheduler(int month, int year);
|
|
|
|
date_t monteenth() const;
|
|
};
|
|
|
|
|
|
}
|