vtuis/lcvtapp/lcapplication.h
branchRCL_3
changeset 25 779871d1e4f4
parent 24 f15ac8e65a02
child 26 590f6f022902
equal deleted inserted replaced
24:f15ac8e65a02 25:779871d1e4f4
     1 /*
       
     2 * Copyright (c) 2008 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 #ifndef LCAPPLICATION_H
       
    18 #define LCAPPLICATION_H
       
    19 
       
    20 #include <hbapplication.h>
       
    21 
       
    22 class LcHbApplication : public HbApplication
       
    23 {
       
    24 Q_OBJECT
       
    25 public:
       
    26     
       
    27     LcHbApplication(int &argc, char *argv[]);
       
    28     ~LcHbApplication();
       
    29 
       
    30 signals:
       
    31     
       
    32     void handleQuit();
       
    33 
       
    34 public slots:
       
    35 
       
    36     //from QCoreApplication
       
    37     static void quit();        
       
    38 
       
    39 private: //data
       
    40     
       
    41     static LcHbApplication* self;
       
    42 };
       
    43 
       
    44 #endif //LCAPPLICATION_H