CmdCalendar: Migrated from ISO8601d to Datetime

This commit is contained in:
Paul Beckingham
2016-12-17 22:08:38 -05:00
parent 17f4b0fdbc
commit d3b25f7325
2 changed files with 34 additions and 34 deletions

View File

@@ -29,7 +29,7 @@
#include <string>
#include <vector>
#include <ISO8601.h>
#include <Datetime.h>
#include <Task.h>
#include <Command.h>
@@ -40,7 +40,7 @@ public:
int execute (std::string&);
private:
std::string renderMonths (int, int, const ISO8601d&, std::vector <Task>&, int);
std::string renderMonths (int, int, const Datetime&, std::vector <Task>&, int);
};
#endif