creator/inc/creator_calendarbase.h
branchRCL_3
changeset 21 b3cee849fa46
parent 20 48060abbbeaf
child 22 fad26422216a
equal deleted inserted replaced
20:48060abbbeaf 21:b3cee849fa46
     1 /*
       
     2 * Copyright (c) 2008 Nokia Corporation and/or its subsidiary(-ies). 
       
     3 * All rights reserved.
       
     4 * This component and the accompanying materials are made available
       
     5 * under the terms of "Eclipse Public License v1.0"
       
     6 * which accompanies this distribution, and is available
       
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8 *
       
     9 * Initial Contributors:
       
    10 * Nokia Corporation - initial contribution.
       
    11 *
       
    12 * Contributors:
       
    13 *
       
    14 * Description:  
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 #ifndef CCREATORCALENDARBASE_
       
    21 #define CCREATORCALENDARBASE_
       
    22 
       
    23 #include "creator_modulebase.h"
       
    24 
       
    25 class CCreatorModuleBaseParameters;
       
    26 
       
    27 class CCreatorCalendarBase : public CBase, public MCreatorModuleBase{
       
    28 public:
       
    29 
       
    30 
       
    31     //An appointment, which has a start time and end time. EAppt.
       
    32     virtual TInt CreateAppointmentEntryL(CCreatorModuleBaseParameters *aParameters) = 0;
       
    33     //An event, which has a start time and end time. EEvent.
       
    34     virtual TInt CreateEventEntryL(CCreatorModuleBaseParameters *aParameters) = 0;
       
    35     //An anniversary, which has a start time and end time. EAnniv.
       
    36     virtual TInt CreateAnniversaryEntryL(CCreatorModuleBaseParameters *aParameters) = 0;
       
    37     //A to-do, which can have a start time and end time (the end time is the due date), or can be undated. ETodo.
       
    38     virtual TInt CreateTodoEntryL(CCreatorModuleBaseParameters *aParameters) = 0;     
       
    39     //A reminder, which has a start time only. EReminder.
       
    40     virtual TInt CreateReminderEntryL(CCreatorModuleBaseParameters *aParameters) = 0;
       
    41 
       
    42 };
       
    43 
       
    44 #endif /*CCREATORCALENDARBASE_*/