phonebookui/Phonebook/PbkExt/src/CPbkDummyControlExtension.cpp
changeset 0 e686773b3f54
equal deleted inserted replaced
-1:000000000000 0:e686773b3f54
       
     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 *       Dummy view extension, which does nothing.
       
    16 *
       
    17 */
       
    18 
       
    19 
       
    20 // INCLUDE FILES
       
    21 #include "CPbkDummyControlExtension.h"
       
    22 
       
    23 
       
    24 // ================= MEMBER FUNCTIONS =======================
       
    25 
       
    26 CPbkDummyControlExtension::CPbkDummyControlExtension()
       
    27     {
       
    28     }
       
    29 
       
    30 CPbkDummyControlExtension::~CPbkDummyControlExtension()
       
    31     {
       
    32     iIcons.Close();
       
    33     }
       
    34 
       
    35 void CPbkDummyControlExtension::DoRelease()
       
    36     {
       
    37     }
       
    38         
       
    39 const TArray<TPbkIconId> CPbkDummyControlExtension::
       
    40         GetDynamicIconsL(TContactItemId /*aContactId*/)
       
    41     {
       
    42     return iIcons.Array();
       
    43     }
       
    44 
       
    45 
       
    46 const TArray<TPbkIconId> CPbkDummyControlExtension::GetDynamicIconsL
       
    47         (const CPbkContactItem& /*aContact*/)
       
    48     {
       
    49     return iIcons.Array();
       
    50     }
       
    51 
       
    52 void CPbkDummyControlExtension::IconArrayResourceId
       
    53         (TInt& aArrayIconInfoId, TInt& aArrayIconId)
       
    54     {
       
    55     aArrayIconInfoId = 0;
       
    56     aArrayIconId = 0;
       
    57     }
       
    58 
       
    59 void CPbkDummyControlExtension::SetContactUiControlUpdate
       
    60         (MPbkContactUiControlUpdate* /*aContactUpdator*/)
       
    61     {
       
    62     }
       
    63 
       
    64 // End of File