wlanutilities/wlansniffer/inc/wlansnifferservice.h
branchGCC_SURGE
changeset 47 b3d8f88532b7
parent 34 30a5f517c615
parent 46 2fbd1d709fe7
equal deleted inserted replaced
34:30a5f517c615 47:b3d8f88532b7
     1 /*
       
     2 * Copyright (c) 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 "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 *
       
    16 */
       
    17 
       
    18 #ifndef WLANSNIFFERSERVICE_H
       
    19 #define WLANSNIFFERSERVICE_H
       
    20 
       
    21 #include <xqserviceprovider.h>
       
    22 
       
    23 class WlanSnifferService: public XQServiceProvider
       
    24 {
       
    25     Q_OBJECT
       
    26 
       
    27 public:
       
    28     WlanSnifferService( QObject *parent = 0 );
       
    29     ~WlanSnifferService();
       
    30     void complete();
       
    31 
       
    32 signals:
       
    33     void toListView();
       
    34     void exitTriggered();
       
    35     
       
    36 public slots:
       
    37     void listView();
       
    38     
       
    39 private:
       
    40     int mAsyncRequestIndex;
       
    41 };
       
    42 
       
    43 #endif // WLANSNIFFERSERVICE_H