wlanutilities/wlansniffer/aiplugin/inc/wsficonarraycreator.h
changeset 19 10810c91db26
parent 3 ff3b37722600
child 22 498f36116140
equal deleted inserted replaced
3:ff3b37722600 19:10810c91db26
     1 /*
       
     2 * Copyright (c) 2007-2008 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:  Class header for CWsfIconArrayCreator
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef C_WSFICONARRAYCREATOR_H
       
    20 #define C_WSFICONARRAYCREATOR_H
       
    21 
       
    22 //  EXTERNAL INCLUDES
       
    23 #include <e32base.h>
       
    24 
       
    25 //  FORWARD DECLARATIONS
       
    26 class CAknIconArray;
       
    27 class CGulIcon;
       
    28 
       
    29 //  CLASS DEFINITION
       
    30 /**
       
    31  * Responsible for the creation of the suitable needed icons.
       
    32  * @since S60 5.0 
       
    33  */
       
    34 NONSHARABLE_CLASS( CWsfIconArrayCreator ) : public CBase
       
    35     {
       
    36     public:     // Constructors and destructor
       
    37     	
       
    38     	/**
       
    39         * Create an icon array
       
    40         * @since S60 5.0
       
    41         * @return The constructed icon array. Ownership passed.
       
    42         */
       
    43         static CAknIconArray* CreateArrayL();
       
    44 
       
    45         /**
       
    46          * Returns the pointer to icon loaded by the AknIconUtils/AknUtil
       
    47          * @param aIconId The id of the icon to load
       
    48          * @return Pointer of the icon.
       
    49          */
       
    50         static CGulIcon* GetIconLC( TInt aIconId );
       
    51     	
       
    52     };
       
    53 
       
    54 #endif // C_WSFICONARRAYCREATOR_H
       
    55 
       
    56 // end of file