phonebookui/Phonebook2/ccapplication/ccapp/inc/ccaappapplication.h
changeset 0 e686773b3f54
equal deleted inserted replaced
-1:000000000000 0:e686773b3f54
       
     1 /*
       
     2 * Copyright (c) 2007 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:  An instance of CCCAAppApplication is the 
       
    15 *                application part of the AVKON application framework
       
    16 *
       
    17 */
       
    18 
       
    19 
       
    20 #ifndef __CCAAPPLICATION_H__
       
    21 #define __CCAAPPLICATION_H__
       
    22 
       
    23 #include <aknapp.h>
       
    24 
       
    25 /**
       
    26  *  An instance of CCCAAppApplication is the application part 
       
    27  *  of the AVKON application framework for the CCAApp 
       
    28  *  application
       
    29  *
       
    30  *  @lib ccaapp.exe
       
    31  *  @since S60 v5.0
       
    32  */  
       
    33 class CCCAAppApplication : public CAknApplication
       
    34     {
       
    35 
       
    36 public:
       
    37 
       
    38 // from base class CApaApplication
       
    39 
       
    40     /**
       
    41      * From CApaApplication
       
    42      * (see details from header)
       
    43      *
       
    44      * @since S60 v5.0
       
    45      */
       
    46     TUid AppDllUid() const;
       
    47 
       
    48 protected:
       
    49 
       
    50 // from base class CApaApplication
       
    51 
       
    52     /**
       
    53      * From CApaApplication
       
    54      * (see details from header)
       
    55      *
       
    56      * @since S60 v5.0
       
    57      */
       
    58 	void NewAppServerL(CApaAppServer*& aAppServer);
       
    59 
       
    60 // from base class CEikApplication
       
    61 
       
    62     /**
       
    63      * From CEikApplication
       
    64      * (see details from header)
       
    65      *
       
    66      * @since S60 v5.0
       
    67      */
       
    68     CApaDocument* CreateDocumentL();
       
    69 
       
    70     };
       
    71 
       
    72 #endif // __CCAAPPLICATION_H__
       
    73 
       
    74 //End Of File