customization/UISettingsSrv/server/Inc/UISettingsSrvApp.h
changeset 0 3ce708148e4d
equal deleted inserted replaced
-1:000000000000 0:3ce708148e4d
       
     1 /*
       
     2 * Copyright (c) 2002 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 *     UISettingsSrvApp is an application class required by Symbian OS architecture.
       
    16 *
       
    17 */
       
    18 
       
    19 
       
    20 #ifndef __UISettingsSrvApp_H__
       
    21 #define __UISettingsSrvApp_H__
       
    22 
       
    23 // INCLUDES
       
    24 #include <aknapp.h>
       
    25 #include <e32std.h>
       
    26 
       
    27 
       
    28 // CONSTANTS
       
    29 // UID of app
       
    30 const   TUid    KUidUISettingsSrv = { 0x10207839 };
       
    31 
       
    32 
       
    33 // CLASS DECLARATION
       
    34 
       
    35 class CUISettingsSrvServer;
       
    36 
       
    37 
       
    38 /**
       
    39 *  CGSApp application class.
       
    40 */
       
    41 class CUISettingsSrvApp : public CAknApplication
       
    42 {
       
    43 	public:
       
    44 		CUISettingsSrvApp( CUISettingsSrvServer* aServer );
       
    45 		virtual ~CUISettingsSrvApp();
       
    46 
       
    47     private: // from CApaApplication
       
    48 
       
    49         /**
       
    50         * Create CUISettingsSrvDocument document object.
       
    51         * 
       
    52         */
       
    53         CApaDocument* CreateDocumentL();
       
    54 
       
    55         /**
       
    56         * Returns application UID.
       
    57         * @return KUidGS.
       
    58         */
       
    59         TUid AppDllUid() const;
       
    60         
       
    61 	private:
       
    62 		CUISettingsSrvServer* iServer;
       
    63 };
       
    64 
       
    65 
       
    66 #endif // __UISettingsSrvApp_H__