apengine/apsettingshandlerui/src/apsettingsui.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: 
       
    15 *     Defines the handler, CApSettingsUi and oem API for 
       
    16 *       the Access Point settings.
       
    17 *
       
    18 */
       
    19 
       
    20 
       
    21 // INCLUDE FILES
       
    22 
       
    23 #include <e32base.h>
       
    24 
       
    25 #include <ApSettingsHandlerCommons.h>
       
    26 #include "apsettingsui.h"
       
    27 #include "ApsettingshandleruiImpl.h"
       
    28 
       
    29 #include "ApSettingsHandlerLogger.h"
       
    30 #include <data_caging_path_literals.hrh>
       
    31 
       
    32 
       
    33 // ================= MEMBER FUNCTIONS =======================
       
    34 
       
    35 // ---------------------------------------------------------
       
    36 // CApSettingsUi::NewLC
       
    37 // ---------------------------------------------------------
       
    38 //
       
    39 EXPORT_C CApSettingsUi* CApSettingsUi::NewLC(
       
    40                                         TBool aStartWithSelection,
       
    41                                         TSelectionListType aListType,
       
    42                                         TSelectionMenuType aSelMenuType,
       
    43                                         TInt aIspFilter,
       
    44                                         TInt aBearerFilter,
       
    45                                         TInt aSortType,
       
    46                                         TInt aReqIpvType,
       
    47                                         TVpnFilterType aVpnFilterType
       
    48                                             )
       
    49     {
       
    50     return NULL;
       
    51     }
       
    52 
       
    53 
       
    54 
       
    55 // Destructor
       
    56 EXPORT_C CApSettingsUi::~CApSettingsUi()
       
    57     {
       
    58     }
       
    59 
       
    60 
       
    61 
       
    62 
       
    63 // Constructor
       
    64 CApSettingsUi::CApSettingsUi( TBool aStartWithSelection,
       
    65                             TSelectionListType aListType,
       
    66                             TSelectionMenuType aSelMenuType,
       
    67                             TInt aReqIpvType )
       
    68 :iStartWithSelection( aStartWithSelection ),
       
    69 iListType( aListType ),
       
    70 iSelMenuType( aSelMenuType ),
       
    71 iReqIpvType( aReqIpvType )
       
    72     {
       
    73     }
       
    74 
       
    75 
       
    76 
       
    77 // ---------------------------------------------------------
       
    78 // CApSettingsUi::ConstructL
       
    79 // ---------------------------------------------------------
       
    80 //
       
    81 EXPORT_C void CApSettingsUi::ConstructL( TInt aIspFilter,
       
    82                                          TInt aBearerFilter,
       
    83                                          TInt aSortType,
       
    84                                          TVpnFilterType aVpnFilterType
       
    85                                         )
       
    86     {
       
    87     }
       
    88 
       
    89 
       
    90 
       
    91 // ---------------------------------------------------------
       
    92 // CApSettingsUi::RunSettingsL
       
    93 // ---------------------------------------------------------
       
    94 //
       
    95 EXPORT_C TInt CApSettingsUi::RunSettingsL( TUint32 aHighLight,
       
    96                                                 TUint32& aSelected )
       
    97     {
       
    98     return 0;
       
    99     }
       
   100 
       
   101 
       
   102 
       
   103 // End of File
       
   104