controlpanelui/src/cpapplication/src/cpapplication.cpp
changeset 43 aae8b749572d
equal deleted inserted replaced
41:ab0490982943 43:aae8b749572d
       
     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:  
       
    15 *
       
    16 */
       
    17 
       
    18 #include "cpapplication.h"
       
    19 
       
    20 /*!
       
    21     CpApplication
       
    22     Inherit HbApplication, mainly used for emit applicationReady Signal.
       
    23  */
       
    24 
       
    25 /*!
       
    26     \fn void CpApplication::applicationReady()
       
    27 
       
    28     This signal is emitted when mainwindow has constructed, used for Matti test.
       
    29 */
       
    30 
       
    31 /*!
       
    32     constructor.
       
    33  */
       
    34 CpApplication::CpApplication(int &argc, char *argv[]):
       
    35  HbApplication(argc, argv)
       
    36 {
       
    37 }
       
    38 
       
    39 /*!
       
    40     Destructor.
       
    41  */
       
    42 CpApplication::~CpApplication()
       
    43 {
       
    44 }
       
    45 
       
    46 /*!
       
    47     Emit applicationReady
       
    48 */
       
    49 void CpApplication::handleAppReady()
       
    50 {
       
    51     emit applicationReady();
       
    52 }