meetup: in progress
This commit is contained in:
parent
539a1aad12
commit
a41e0690df
2 changed files with 41 additions and 0 deletions
21
cpp/meetup/meetup.h
Normal file
21
cpp/meetup/meetup.h
Normal 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;
|
||||
};
|
||||
|
||||
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue