apengine/apsettingshandlerui/src/ApNetSelectorListBoxModel.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 CApNetSelectorListboxModel.
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 // INCLUDE FILES
       
    20 #include "ApNetSelectorListBoxModel.h"
       
    21 #include "ApNetworkItem.h"
       
    22 #include <ApSettingsHandlerCommons.h>
       
    23 
       
    24 #include "ApSettingsHandlerLogger.h"
       
    25 
       
    26 // CONSTANTS
       
    27 
       
    28 
       
    29 // ================= MEMBER FUNCTIONS =======================
       
    30 
       
    31 // ---------------------------------------------------------
       
    32 // CApNetSelectorListboxModel::CApNetSelectorListboxModel
       
    33 // ---------------------------------------------------------
       
    34 //
       
    35 CApNetSelectorListboxModel::CApNetSelectorListboxModel( )
       
    36 :CApNetworkItemList()
       
    37     {
       
    38     }
       
    39 
       
    40 
       
    41 // ---------------------------------------------------------
       
    42 // CApNetSelectorListboxModel::~CApNetSelectorListboxModel
       
    43 // ---------------------------------------------------------
       
    44 //
       
    45 CApNetSelectorListboxModel::~CApNetSelectorListboxModel()
       
    46     {
       
    47     }
       
    48 
       
    49 
       
    50 // ---------------------------------------------------------
       
    51 // CApNetSelectorListboxModel::MdcaCount
       
    52 // ---------------------------------------------------------
       
    53 //
       
    54 TInt CApNetSelectorListboxModel::MdcaCount() const
       
    55     {
       
    56     return 0;
       
    57     }
       
    58 
       
    59 
       
    60 // ---------------------------------------------------------
       
    61 // CApNetSelectorListboxModel::MdcaPoint
       
    62 // ---------------------------------------------------------
       
    63 //
       
    64 TPtrC CApNetSelectorListboxModel::MdcaPoint( TInt aIndex ) const
       
    65     {
       
    66     User::Leave( KErrNotSupported );
       
    67     return iBuf;
       
    68     }
       
    69 
       
    70 
       
    71 // ---------------------------------------------------------
       
    72 // CApNetSelectorListboxModel::Item4Uid
       
    73 // ---------------------------------------------------------
       
    74 //
       
    75 TInt CApNetSelectorListboxModel::Item4Uid( TUint32 aUid, TInt& aErr ) const
       
    76     {
       
    77     return KErrNotSupported;
       
    78     }
       
    79 
       
    80 
       
    81 
       
    82 // ---------------------------------------------------------
       
    83 // CApNetSelectorListboxModel::FormatListboxText
       
    84 // ---------------------------------------------------------
       
    85 //
       
    86 void CApNetSelectorListboxModel::FormatListboxText( TInt aIndex,
       
    87                                                 TDes& aBuf ) const
       
    88     {
       
    89     }
       
    90 
       
    91 // End of File