From 36ec8307a98290296724b301b098116fa0f3dc7c Mon Sep 17 00:00:00 2001 From: Steve Brokenshire Date: Thu, 18 Feb 2016 21:25:01 +0000 Subject: [PATCH] Initial version of the CalDAV object. --- source/objects/CalDAV/CalDAV.cpp | 2 ++ source/objects/CalDAV/CalDAV.h | 15 +++++++++++++++ 2 files changed, 17 insertions(+) create mode 100644 source/objects/CalDAV/CalDAV.cpp create mode 100644 source/objects/CalDAV/CalDAV.h diff --git a/source/objects/CalDAV/CalDAV.cpp b/source/objects/CalDAV/CalDAV.cpp new file mode 100644 index 0000000..ec931d4 --- /dev/null +++ b/source/objects/CalDAV/CalDAV.cpp @@ -0,0 +1,2 @@ +#include "CalDAV.h" + diff --git a/source/objects/CalDAV/CalDAV.h b/source/objects/CalDAV/CalDAV.h new file mode 100644 index 0000000..0413429 --- /dev/null +++ b/source/objects/CalDAV/CalDAV.h @@ -0,0 +1,15 @@ +#ifndef __OBJECTS_CALDAV_CALDAV_H__ +#define __OBJECTS_CALDAV_CALDAV_H__ + +#include +#include + +using namespace std; + +class CalDAV{ + + + +}; + +#endif -- 2.39.5