meetup: in progress

This commit is contained in:
Dmitry Kokorin 2016-04-14 18:02:42 +03:00
parent 539a1aad12
commit a41e0690df
2 changed files with 41 additions and 0 deletions

21
cpp/meetup/meetup.h Normal file
View file

@ -0,0 +1,21 @@
#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;
};
}