mediasettings/mediasettingsapp/inc/MPSettingsApp.h
changeset 0 96612d01cf9f
equal deleted inserted replaced
-1:000000000000 0:96612d01cf9f
       
     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 the License "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:   Declares main application class.*
       
    15 */
       
    16 
       
    17 
       
    18 // Version : %version: 2 %
       
    19 
       
    20 
       
    21 
       
    22 #ifndef MPSETTINGSAPP_H
       
    23 #define MPSETTINGSAPP_H
       
    24 
       
    25 // INCLUDES
       
    26 #include    <aknapp.h>
       
    27 
       
    28 // CONSTANTS
       
    29 // UID of the application
       
    30 const TUid KUidMediaSettings = {0x10005A3F};
       
    31 
       
    32 // CLASS DECLARATION
       
    33 
       
    34 /**
       
    35 * CMPSettingsApp application class.
       
    36 * Provides factory to create concrete document object.
       
    37 * 
       
    38 *  @lib MediaSettings.app
       
    39 *  @since 2.0
       
    40 */
       
    41 class CMPSettingsApp : public CAknApplication
       
    42     {
       
    43     private:
       
    44 
       
    45         /**
       
    46         * From CApaApplication, creates CMPSettingsDocument document object.
       
    47         * @return A pointer to the created document object.
       
    48         */
       
    49         CApaDocument* CreateDocumentL();
       
    50         
       
    51         /**
       
    52         * From CApaApplication, returns application's UID (KUidMediaSettings).
       
    53         * @return The value of KUidMediaSettings.
       
    54         */
       
    55         TUid AppDllUid() const;
       
    56     };
       
    57 
       
    58 #endif
       
    59 
       
    60 // End of File
       
    61