wlanutilities/wlanlogin/wlanloginapp/inc/wlanloginapplication.h
branchRCL_3
changeset 24 63be7eb3fc78
equal deleted inserted replaced
23:b852595f5cbe 24:63be7eb3fc78
       
     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: Header file for WlanLoginApplication class
       
    15 * 
       
    16 */
       
    17 
       
    18 #ifndef WLANLOGINAPPLICATION_H
       
    19 #define WLANLOGINAPPLICATION_H
       
    20 
       
    21 // System includes
       
    22 #include <HbApplication>
       
    23 
       
    24 //User includes
       
    25 
       
    26 // forward declarations
       
    27 class WlanLoginService;
       
    28 class WlanLoginEngine;
       
    29 class WlanLoginMainWindow;
       
    30 class HbTranslator;
       
    31 
       
    32 // External data types
       
    33 
       
    34 // Constants
       
    35 
       
    36 // Class declaration
       
    37 class WlanLoginApplication : public HbApplication
       
    38     {
       
    39 public:
       
    40     WlanLoginApplication(int argc, char* argv[]);
       
    41     ~WlanLoginApplication();
       
    42     
       
    43     WlanLoginService* service() const;
       
    44     WlanLoginEngine* engine() const;
       
    45     QSharedPointer <WlanLoginMainWindow> mainWindow();
       
    46     
       
    47     
       
    48 private: // data
       
    49     
       
    50     // Not owned data
       
    51 
       
    52     // Owned data
       
    53     WlanLoginService* mService; //!< Pointer to Qt Highway service provider
       
    54     QSharedPointer <HbTranslator> mTranslator; //!< Pointer to HB translator
       
    55     WlanLoginEngine* mEngine; //!< Pointer to WLAN login engine
       
    56     QSharedPointer <WlanLoginMainWindow> mMainWindow; //!< Pointer to WLAN login application main window      
       
    57     };
       
    58 
       
    59 #endif // WLANLOGINAPPLICATION_H