X-Git-Url: http://Server1/repobrowser/?a=blobdiff_plain;f=source%2Fobjects%2FCalDAV%2FCalDAV.h;h=c4f1a8bfe0029d2015e4acca8818c6bc9cb7aedf;hb=b811c99c6ef3ab48376de10f5df9c048436a2f31;hp=04134296903c3a469ddfabd3be4cd5c4b3dbd2b8;hpb=36ec8307a98290296724b301b098116fa0f3dc7c;p=xestiacalendar%2F.git 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{