Changeset 86 for Mulberry/branches/v4.1d1/Sources_Common/Calendar_Store/Clients/CLocalCalendarClient.cpp
- Timestamp:
- 07/09/07 10:02:18 (2 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
Mulberry/branches/v4.1d1/Sources_Common/Calendar_Store/Clients/CLocalCalendarClient.cpp
r19 r86 210 210 211 211 // 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); 213 213 root->AddChild(node); 214 214 … … 673 673 } 674 674 675 #pragma mark ____________________________Schedule 676 677 // Get Scheduling Inbox/Outbox URIs 678 void CLocalCalendarClient::_GetScheduleInboxOutbox(const CCalendarStoreNode& node, cdstring& inboxURI, cdstring& outboxURI) 679 { 680 } 681 682 // Run scheduling request 683 void 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 692 void CLocalCalendarClient::_GetFreeBusyCalendars(cdstrvect& calendars) 693 { 694 695 } 696 697 void CLocalCalendarClient::_SetFreeBusyCalendars(const cdstrvect& calendars) 698 { 699 700 } 701 675 702 #pragma mark ____________________________Utils 676 703