psln/Inc/PslnApplication.h
changeset 37 89c890c70182
parent 34 6b5204869ed5
child 45 667edd0b8678
equal deleted inserted replaced
34:6b5204869ed5 37:89c890c70182
     1 /*
       
     2 * Copyright (c) 2002-2006 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:  App class for Psln application.
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef C_PSLNAPPLICATION_H
       
    20 #define C_PSLNAPPLICATION_H
       
    21 
       
    22 #include <aknapp.h>
       
    23 
       
    24 /**
       
    25  * Psln Application class. 
       
    26  * This class is created by the Symbian OS framework by a call to NewApplication()
       
    27  * function when the application is started. The main purpose of the 
       
    28  * application class is to create the application-specific document object 
       
    29  * (PslnDocument in this case) via a call to virtual CreateDocumentL().
       
    30  *
       
    31  * @see NewApplication
       
    32  */
       
    33 class CPslnApplication : public CAknApplication 
       
    34     {
       
    35     private: // from CApaApplication
       
    36         
       
    37         /**
       
    38         * Creates the Psln document object (PslnDocument). 
       
    39         * Called by the application framework.
       
    40         * 
       
    41         * @return New Psln document object (PslnDocument).
       
    42         */
       
    43         CApaDocument* CreateDocumentL();
       
    44         
       
    45         /**
       
    46         * Returns application UID.
       
    47         * @return KUidPsln.
       
    48         */
       
    49         TUid AppDllUid() const;
       
    50     };
       
    51 
       
    52 #endif // C_PSLNAPPLICATION_H
       
    53             
       
    54 // End of File