clock/clockui/clockapplication/inc/clockapplication.h
changeset 55 2c54b51f39c4
equal deleted inserted replaced
51:0b38fc5b94c6 55:2c54b51f39c4
       
     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: Header file for class ClockApplication.
       
    15 *
       
    16 */
       
    17 #ifndef CLOCKAPPLICATION_H
       
    18 #define CLOCKAPPLICATION_H
       
    19 
       
    20 // System includes
       
    21 #include <QPointer>
       
    22 #include <HbApplication>
       
    23 
       
    24 // Forward Declaratios
       
    25 class ClockAppController;
       
    26 
       
    27 class ClockApplication : public HbApplication
       
    28 {
       
    29 	Q_OBJECT
       
    30 
       
    31 public:
       
    32 	ClockApplication(int &argc, char *argv[]);
       
    33 	virtual ~ClockApplication();
       
    34 
       
    35 signals:
       
    36 	void applicationReady();
       
    37 
       
    38 public:
       
    39 	void createController();
       
    40 	bool execution();
       
    41 	
       
    42 private slots:
       
    43 	void handleAppReady();
       
    44 	
       
    45 private:
       
    46 	QPointer<ClockAppController> mController;
       
    47 };
       
    48 
       
    49 #endif // CLOCKAPPLICATION_H
       
    50 
       
    51 // End of file	--Don't remove this.