appinstaller/AppinstUi/startuplistupdater/tsrc/testslulauncher/testslulauncher.h
branchRCL_3
changeset 25 7333d7932ef7
equal deleted inserted replaced
24:5cc91383ab1e 25:7333d7932ef7
       
     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:  Test startup list update launcher application
       
    15 *
       
    16 */
       
    17 
       
    18 #ifndef TESTSLULAUNCHER_H
       
    19 #define TESTSLULAUNCHER_H
       
    20 
       
    21 #include <hbapplication.h>
       
    22 
       
    23 class HbMainWindow;
       
    24 class HbView;
       
    25 
       
    26 
       
    27 class TestStartupListUpdateLauncher : public HbApplication
       
    28 {
       
    29     Q_OBJECT
       
    30 
       
    31 public:     // constructor and destructor
       
    32     TestStartupListUpdateLauncher(int& argc, char* argv[]);
       
    33     ~TestStartupListUpdateLauncher();
       
    34 
       
    35 private slots:
       
    36     void updateStartupList();
       
    37     void closeApp();
       
    38 
       
    39 private:    // functions
       
    40 
       
    41 private:    // data
       
    42     HbMainWindow *mMainWindow;
       
    43     HbView       *mMainView;
       
    44 };
       
    45 
       
    46 #endif  // TESTSLULAUNCHER_H