messagingapp/msgui/msgapp/inc/msgapplication.h
changeset 67 fc91263aee62
child 76 60a8a215b0ec
equal deleted inserted replaced
65:d8ac8e5e4721 67:fc91263aee62
       
     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:   ?Description
       
    15 *
       
    16 */
       
    17 
       
    18 #ifndef MSGAPPLICATION_H_
       
    19 #define MSGAPPLICATION_H_
       
    20 
       
    21 #include <hbApplication.h>
       
    22 
       
    23 class MsgApplication: public HbApplication
       
    24 {
       
    25 
       
    26 Q_OBJECT
       
    27 	
       
    28 public:
       
    29 	
       
    30 	/**
       
    31 	 * Constructor
       
    32 	 */
       
    33 	MsgApplication( int &argc, char *argv[] );
       
    34 	
       
    35 	/**
       
    36 	 * Destructor
       
    37 	 */
       
    38 	virtual ~MsgApplication();
       
    39 	
       
    40 	/**
       
    41 	 * initMattiAutomation
       
    42 	 * connects viewReady signal to handleAppReady slot
       
    43 	 */
       
    44 	void initViewReady();
       
    45 	
       
    46 private slots:
       
    47 	void handleAppReady();
       
    48 
       
    49 signals:
       
    50 	void applicationReady();
       
    51 };
       
    52     
       
    53 #endif // MSGAPPLICATION_H_