wlansecuritysettings/wlaneapsettingsui/EapPluginConfig/inc/EAPPluginList.h
changeset 0 c8830336c852
child 2 1c7bc153c08e
equal deleted inserted replaced
-1:000000000000 0:c8830336c852
       
     1 /*
       
     2 * Copyright (c) 2001-2009 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 the License "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 class REAPPluginList.
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 #ifndef __EAP_PLUGIN_LIST_H__
       
    21 #define __EAP_PLUGIN_LIST_H__
       
    22 
       
    23 // INCLUDES
       
    24 #include <e32base.h>
       
    25 #include "EAPPluginInfo.h"
       
    26 
       
    27 
       
    28 // CLASS DECLARATION
       
    29 
       
    30 /**
       
    31 * Plugin info list.
       
    32 */
       
    33 class REAPPluginList: public RArray<TEAPPluginInfo>
       
    34     {
       
    35     public:     // New methods
       
    36         /**
       
    37         * Change plugin position (reorder).
       
    38         * @param aOldPos Current position of plugin. Must be a valid index.
       
    39         * @param aOldPos New position of plugin. Must be a valid index.
       
    40         */
       
    41         void MovePos( TInt aOldPos, TInt aNewPos );
       
    42     };
       
    43 
       
    44 #endif  // __EAP_PLUGIN_LIST_H__
       
    45 
       
    46 
       
    47 //  End of File