apengine/apeng/src/ActiveApDb.cpp
changeset 71 9f263f780e41
parent 70 ac5daea24fb0
child 72 0c32cf868819
equal deleted inserted replaced
70:ac5daea24fb0 71:9f263f780e41
     1 /*
       
     2 * Copyright (c) 2002 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:  Implementation of CActiveApDb.
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 // INCLUDE FILES
       
    20 
       
    21 #include <ActiveApDb.h>
       
    22 #include "ActiveApDbNotifier.h"
       
    23 #include <ApEngineConsts.h>
       
    24 #include "ApEngineCommons.h"
       
    25 #include "ApEngineLogger.h"
       
    26 
       
    27 const TInt KObserverArrayGranularity = 1;
       
    28 
       
    29 // ================= MEMBER FUNCTIONS =======================
       
    30 
       
    31 // ---------------------------------------------------------
       
    32 // CActiveApDb::NewL
       
    33 // ---------------------------------------------------------
       
    34 //
       
    35 EXPORT_C CActiveApDb* CActiveApDb::NewL( TCommDbDatabaseType /*aType*/ )
       
    36     {
       
    37     return NULL;
       
    38     }
       
    39 
       
    40 // ---------------------------------------------------------
       
    41 // CActiveApDb::~CActiveApDb
       
    42 // ---------------------------------------------------------
       
    43 //
       
    44 EXPORT_C CActiveApDb::~CActiveApDb()
       
    45     {
       
    46     }
       
    47 
       
    48 
       
    49 // ---------------------------------------------------------
       
    50 // CActiveApDb::CActiveApDb
       
    51 // ---------------------------------------------------------
       
    52 //
       
    53 CActiveApDb::CActiveApDb()
       
    54     {
       
    55     }
       
    56 
       
    57 
       
    58 // ---------------------------------------------------------
       
    59 // CActiveApDb::ConstructL
       
    60 // ---------------------------------------------------------
       
    61 //
       
    62 void CActiveApDb::ConstructL()
       
    63     {
       
    64     }
       
    65 
       
    66 
       
    67 // ---------------------------------------------------------
       
    68 // CActiveApDb::AddObserverL
       
    69 // ---------------------------------------------------------
       
    70 //
       
    71 EXPORT_C void CActiveApDb::AddObserverL( MActiveApDbObserver* anObserver )
       
    72     {
       
    73     }
       
    74 
       
    75 
       
    76 // ---------------------------------------------------------
       
    77 // CActiveApDb::RemoveObserver
       
    78 // ---------------------------------------------------------
       
    79 //
       
    80 EXPORT_C void CActiveApDb::RemoveObserver( MActiveApDbObserver* anObserver )
       
    81     {
       
    82     }
       
    83 
       
    84 
       
    85 // ---------------------------------------------------------
       
    86 // CActiveApDb::Database
       
    87 // ---------------------------------------------------------
       
    88 //
       
    89 EXPORT_C CCommsDatabase*  CActiveApDb::Database()
       
    90     {
       
    91     return NULL;
       
    92     }
       
    93 
       
    94 // ---------------------------------------------------------
       
    95 // CActiveApDb::HandleDbEventL
       
    96 // ---------------------------------------------------------
       
    97 //
       
    98 void CActiveApDb::HandleDbEventL( TInt anEvent )
       
    99     {
       
   100 
       
   101     }
       
   102 
       
   103 
       
   104 
       
   105 
       
   106 // ---------------------------------------------------------
       
   107 // CActiveApDb::NotifyObserversL
       
   108 // ---------------------------------------------------------
       
   109 //
       
   110 void CActiveApDb::NotifyObserversL( MActiveApDbObserver::TEvent anEvent )
       
   111     {
       
   112 
       
   113     }
       
   114 
       
   115 // End of File