calendarui/controller/src/calenmultipledbmanager.cpp
changeset 0 f979ecb2b13e
equal deleted inserted replaced
-1:000000000000 0:f979ecb2b13e
       
     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:  Calendar multiple db
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #include "calendarui_debug.h"           // Debug macros
       
    20 #include "calenmultipledbmanager.h"
       
    21 #include "calencontroller.h"
       
    22 
       
    23 // ----------------------------------------------------------------------------
       
    24 // CCalenMultipleDbManager::CCalenMultipleDbManager
       
    25 // Constructor
       
    26 // (other items were commented in a header).
       
    27 // ----------------------------------------------------------------------------
       
    28 //
       
    29 CCalenMultipleDbManager::CCalenMultipleDbManager()
       
    30     {
       
    31     TRACE_ENTRY_POINT
       
    32     TRACE_EXIT_POINT
       
    33     }
       
    34 
       
    35 // ----------------------------------------------------------------------------
       
    36 // CCalenMultipleDbManager::NewL
       
    37 // Constructor
       
    38 // (other items were commented in a header).
       
    39 // ----------------------------------------------------------------------------
       
    40 //
       
    41 CCalenMultipleDbManager* CCalenMultipleDbManager::NewL()
       
    42     {
       
    43     TRACE_ENTRY_POINT
       
    44     CCalenMultipleDbManager* self = new(ELeave) CCalenMultipleDbManager();
       
    45     CleanupStack::PushL( self );
       
    46     self->ConstructL();
       
    47     CleanupStack::Pop( self );
       
    48     TRACE_EXIT_POINT
       
    49     return self;
       
    50     }
       
    51 
       
    52 // ----------------------------------------------------------------------------
       
    53 // CCalenMultipleDbManager::~CCalenAlarmManager
       
    54 // Destructor
       
    55 // (other items were commented in a header).
       
    56 // ----------------------------------------------------------------------------
       
    57 //
       
    58 CCalenMultipleDbManager::~CCalenMultipleDbManager()
       
    59     {
       
    60     TRACE_ENTRY_POINT
       
    61     TRACE_EXIT_POINT
       
    62     }
       
    63 
       
    64 // ----------------------------------------------------------------------------
       
    65 // CCalenMultipleDbManager::ConstructL()
       
    66 // 2nd phase
       
    67 // (other items were commented in a header).
       
    68 // ----------------------------------------------------------------------------
       
    69 //
       
    70 void CCalenMultipleDbManager::ConstructL()
       
    71     {
       
    72     TRACE_ENTRY_POINT
       
    73     TRACE_EXIT_POINT
       
    74     }
       
    75 
       
    76 // ----------------------------------------------------------------------------
       
    77 // CCalenMultipleDbManager::HandleCommandL()
       
    78 // (other items were commented in a header).
       
    79 // ----------------------------------------------------------------------------
       
    80 //
       
    81 TBool CCalenMultipleDbManager::HandleCommandL(const TCalenCommand& /*aCommand*/ )
       
    82     {
       
    83     TRACE_ENTRY_POINT
       
    84     TRACE_EXIT_POINT
       
    85     return EFalse;
       
    86     }
       
    87 
       
    88 // ----------------------------------------------------------------------------
       
    89 // CCalenMultipleDbManager::CalenCommandHandlerExtensionL
       
    90 // Dummy implementation.
       
    91 // (other items were commented in a header).
       
    92 // ----------------------------------------------------------------------------
       
    93 //
       
    94 TAny* CCalenMultipleDbManager::CalenCommandHandlerExtensionL( TUid /*aExtensionUid*/ )
       
    95     {
       
    96     TRACE_ENTRY_POINT;
       
    97     TRACE_EXIT_POINT;
       
    98     return NULL;
       
    99     }
       
   100 
       
   101 // ----------------------------------------------------------------------------
       
   102 // CCalenMultipleDbManager::HandleNotificationL()
       
   103 // (other items were commented in a header).
       
   104 // ----------------------------------------------------------------------------
       
   105 //
       
   106 void CCalenMultipleDbManager::HandleNotification(TCalenNotification /*aNotification*/ )
       
   107     {
       
   108     TRACE_ENTRY_POINT
       
   109     TRACE_EXIT_POINT
       
   110     }
       
   111