taskswitcher/taskswitcherui/taskswitcherapp/inc/tsapplication.h
changeset 4 4d54b72983ae
equal deleted inserted replaced
3:fb3763350a08 4:4d54b72983ae
       
     1 /*
       
     2 * Copyright (c) 2008 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:  Application class
       
    15  *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef TSAPPLICATION_H
       
    20 #define TSAPPLICATION_H
       
    21 
       
    22 #include <e32base.h> 
       
    23 #include <aknapp.h>
       
    24 
       
    25 class CTsApplication : public CAknApplication
       
    26     {
       
    27 public:
       
    28     // from CAknApplication
       
    29     /**
       
    30      * Returns the application DLL UID value
       
    31      *
       
    32      * @since S60 v5.0
       
    33      * @return the UID of this Application/Dll
       
    34      */
       
    35     TUid AppDllUid( ) const;
       
    36 
       
    37 protected:
       
    38     // from CAknApplication
       
    39     /**
       
    40      * Create a CApaDocument object and return a pointer to it
       
    41      *
       
    42      * @since S60 v5.0
       
    43      * a pointer to the created document
       
    44      */
       
    45     CApaDocument* CreateDocumentL( );
       
    46     };
       
    47 
       
    48 #endif // TSAPPLICATION_H