Show
Ignore:
Timestamp:
07/09/07 10:02:18 (2 years ago)
Author:
daboo
Message:

Some 4.1 changes. Mostly vCard/CardDAV and CalDAV scheduling support.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • Mulberry/branches/v4.1d1/Sources_Common/Calendar_Store/Clients/CLocalCalendarClient.cpp

    r19 r86  
    210210 
    211211                // Create the new node and add to parent 
    212                 CCalendarStoreNode* node = new CCalendarStoreNode(GetCalendarProtocol(), root, _dir.is_dir(), rpath); 
     212                CCalendarStoreNode* node = new CCalendarStoreNode(GetCalendarProtocol(), root, _dir.is_dir(), false, false, rpath); 
    213213                root->AddChild(node); 
    214214 
     
    673673} 
    674674 
     675#pragma mark ____________________________Schedule 
     676 
     677// Get Scheduling Inbox/Outbox URIs 
     678void CLocalCalendarClient::_GetScheduleInboxOutbox(const CCalendarStoreNode& node, cdstring& inboxURI, cdstring& outboxURI) 
     679{ 
     680} 
     681 
     682// Run scheduling request 
     683void CLocalCalendarClient::_Schedule(const cdstring& outboxURI, 
     684                                                                         const cdstring& originator, 
     685                                                                         const cdstrvect& recipients, 
     686                                                                         const iCal::CICalendar& cal, 
     687                                                                         iCal::CITIPScheduleResultsList& results) 
     688{ 
     689         
     690} 
     691 
     692void CLocalCalendarClient::_GetFreeBusyCalendars(cdstrvect& calendars) 
     693{ 
     694         
     695} 
     696 
     697void CLocalCalendarClient::_SetFreeBusyCalendars(const cdstrvect& calendars) 
     698{ 
     699         
     700} 
     701 
    675702#pragma mark ____________________________Utils 
    676703