apengine/apeng/src/APNetworks.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:  Declaration of the CApNetworks class.
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 // INCLUDE FILES
       
    20 #include <cdbcols.h>
       
    21 #include <commdb.h>
       
    22 #include <eikdef.h>
       
    23 #include <d32dbms.h>
       
    24 #include <ApNetworkItem.h>
       
    25 #include <ApNetworkItemList.h>
       
    26 #include <ApEngineConsts.h>
       
    27 
       
    28 #include <comms-infras/commdb/protection/protectdb.h>
       
    29 
       
    30 #include "ApNetworks.h"
       
    31 #include "ApEngineLogger.h"
       
    32 #include "ApEngineCommons.h"
       
    33 
       
    34 
       
    35 
       
    36 
       
    37 // LOCAL CONSTANTS AND MACROS
       
    38 
       
    39 // LOCAL FUNCTION PROTOTYPES
       
    40 
       
    41 // ================= MEMBER FUNCTIONS =======================
       
    42 // Two-phased constructor.
       
    43 // ---------------------------------------------------------
       
    44 // CApNetworks::NewLC
       
    45 // ---------------------------------------------------------
       
    46 //
       
    47 EXPORT_C CApNetworks* CApNetworks::NewLC( CCommsDatabase& aDb )
       
    48     {
       
    49     return NULL;
       
    50     }
       
    51 
       
    52 
       
    53 // Destructor
       
    54 // ---------------------------------------------------------
       
    55 // CApNetworks::~CApNetworks
       
    56 // ---------------------------------------------------------
       
    57 //
       
    58 EXPORT_C CApNetworks::~CApNetworks()
       
    59     {
       
    60     }
       
    61 
       
    62 
       
    63 // C++ default constructor can NOT contain any code that
       
    64 // might leave.
       
    65 //
       
    66 // ---------------------------------------------------------
       
    67 // CApNetworks::CApNetworks
       
    68 // ---------------------------------------------------------
       
    69 //
       
    70 EXPORT_C CApNetworks::CApNetworks()
       
    71 :iCount( 0 )
       
    72     {
       
    73     }
       
    74 
       
    75 
       
    76 // Symbian OS default constructor can leave.
       
    77 // ---------------------------------------------------------
       
    78 // CApNetworks::ConstructL
       
    79 // ---------------------------------------------------------
       
    80 //
       
    81 EXPORT_C void CApNetworks::ConstructL( CCommsDatabase& aDb )
       
    82 
       
    83     {
       
    84     }
       
    85 
       
    86 
       
    87 
       
    88 // ---------------------------------------------------------
       
    89 // CApNetworks::Count
       
    90 // ---------------------------------------------------------
       
    91 //
       
    92 EXPORT_C TUint32 CApNetworks::Count() const
       
    93     {
       
    94     return 0;
       
    95     }
       
    96 
       
    97 
       
    98 // ---------------------------------------------------------
       
    99 // CApNetworks::Name
       
   100 // ---------------------------------------------------------
       
   101 //
       
   102 EXPORT_C const TDesC& CApNetworks::NameL( TUint32 aUid ) const
       
   103     {
       
   104     User::Leave( KErrNotSupported );
       
   105     }
       
   106 
       
   107 
       
   108 
       
   109 
       
   110 
       
   111 
       
   112 // ---------------------------------------------------------
       
   113 // CApNetworks::AllListItemDataL
       
   114 // ---------------------------------------------------------
       
   115 //
       
   116 EXPORT_C TInt CApNetworks::AllListItemDataL( CApNetworkItemList& aList )
       
   117     {
       
   118     return 0;
       
   119     }
       
   120 
       
   121 
       
   122 
       
   123 
       
   124 // ================= OTHER EXPORTED FUNCTIONS ==============
       
   125 
       
   126 // ================== OTHER MEMBER FUNCTIONS ===============
       
   127 
       
   128 
       
   129 
       
   130 // ---------------------------------------------------------
       
   131 // CApNetworks::DoUpdate
       
   132 // ---------------------------------------------------------
       
   133 //
       
   134 TInt CApNetworks::DoUpdateL()
       
   135     {
       
   136     return KErrNotFound;
       
   137     }
       
   138 
       
   139 
       
   140 
       
   141 // End of File