From: Kiri Date: Sat, 20 Feb 2016 09:48:44 +0000 (+0000) Subject: Added initial versions of several CalDAV objects. X-Git-Tag: release-0.02~349 X-Git-Url: http://Server1/repobrowser/?a=commitdiff_plain;h=b811c99c6ef3ab48376de10f5df9c048436a2f31;p=xestiacalendar%2F.git Added initial versions of several CalDAV objects. --- diff --git a/source/objects/CalDAV/CalDAV.h b/source/objects/CalDAV/CalDAV.h index 0413429..c4f1a8b 100644 --- a/source/objects/CalDAV/CalDAV.h +++ b/source/objects/CalDAV/CalDAV.h @@ -6,6 +6,47 @@ using namespace std; +// CalDAVConnectionData: used for +// connecting to the server. + +enum CalDAVQueryResult { + CALDAVQUERYRESULT_UNITTESTFAIL = -1, + CALDAVQUERYRESULT_OK +}; + +struct CalDAVConnectionData{ + + string Hostname; + int Port; + string Username; + string Password; + string Prefix; + bool UseSSL; + +}; + +// CalDAVStatusData: used for +// getting the current server +// settings for the CalDAV +// object. + +struct CalDAVStatus{ + + + +}; + +// CalDAVServerResult: used for +// getting the result of the +// request made via the CalDAV +// object. + +struct CalDAVServerResult{ + + + +}; + class CalDAV{