wlanutilities/wpswizard/inc/mwpsactiverunnercallback.h
branchRCL_3
changeset 25 f28ada11abbf
parent 24 63be7eb3fc78
equal deleted inserted replaced
24:63be7eb3fc78 25:f28ada11abbf
     1 /*
       
     2 * Copyright (c) 2010 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: Interface class for the middleware callback
       
    15 *
       
    16 */
       
    17 #ifndef MWPSACTIVERUNNERCALLBACK_H_
       
    18 #define MWPSACTIVERUNNERCALLBACK_H_
       
    19 
       
    20 // System includes
       
    21 #include <QList>
       
    22 #include <wlanmgmtcommon.h>
       
    23 
       
    24 // User includes
       
    25 // Forward declarations
       
    26 // External data types
       
    27 // Constants
       
    28 
       
    29 /*!
       
    30  * @addtogroup group_wps_wizard_plugin
       
    31  * @{
       
    32  */
       
    33 
       
    34 // Class declaration
       
    35 class MWpsActiveRunnerCallback
       
    36     {
       
    37 public:
       
    38     /*!
       
    39      * Callback to notify the completion of middleware API call
       
    40      */
       
    41     virtual void WpsActiveRunnerStopped(
       
    42         QList<TWlanProtectedSetupCredentialAttribute>& aCredentials,
       
    43         TInt aError) = 0;
       
    44     };
       
    45 
       
    46 #endif /* MWPSACTIVERUNNERCALLBACK_H_ */