mpxmusicplayer/app/inc/mpxapp.h
changeset 0 ff3acec5bc43
equal deleted inserted replaced
-1:000000000000 0:ff3acec5bc43
       
     1 /*
       
     2 * Copyright (c) 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:  Application class required by AVKON application framework.
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 #ifndef CMPXAPP_H
       
    21 #define CMPXAPP_H
       
    22 
       
    23 
       
    24 // INCLUDES
       
    25 #include <aknapp.h>
       
    26 
       
    27 
       
    28 // CLASS DECLARATION
       
    29 
       
    30 /**
       
    31  *  CMPXApp application class.
       
    32  *
       
    33  *  Provides factory to create concrete document object.
       
    34  *
       
    35  *  @lib mpx.exe
       
    36  *  @since S60 v3.1
       
    37  */
       
    38 NONSHARABLE_CLASS( CMPXApp ) : public CAknApplication
       
    39     {
       
    40 private:
       
    41 
       
    42 // from base class CApaApplication
       
    43 
       
    44     /**
       
    45      * From CApaApplication, creates CMPXDocument document object.
       
    46      * @return A pointer to the created document object.
       
    47      */
       
    48     CApaDocument* CreateDocumentL();
       
    49     
       
    50     /**
       
    51      * From CApaApplication, returns application's UID (defined in mpxconstants.h).
       
    52      * @return The UID for music player application.
       
    53      */
       
    54     TUid AppDllUid() const;
       
    55     };
       
    56 
       
    57 #endif // CMPXAPP_H
       
    58 
       
    59 // End of File