menufw/menufwui/matrixmenu/inc/mmapplication.h
changeset 0 f72a12da539e
equal deleted inserted replaced
-1:000000000000 0:f72a12da539e
       
     1 /*
       
     2 * Copyright (c) 2007-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 C_MMAPPLICATION_H
       
    20 #define C_MMAPPLICATION_H
       
    21 
       
    22 // INCLUDES
       
    23 #include <aknapp.h>
       
    24 
       
    25 /**
       
    26  *  @ingroup group_matrixmenu
       
    27  *  Matrix Menu Application.
       
    28  *  AVKON Application class.
       
    29  *
       
    30  *  @since S60 v5.0
       
    31  */
       
    32 NONSHARABLE_CLASS(CMmApplication) : public CAknApplication
       
    33 	{
       
    34 	
       
    35 public:
       
    36 
       
    37 // from base class CApaApplication
       
    38 
       
    39 	/**
       
    40      * From CApaApplication.
       
    41      * Returns application's UID.
       
    42      *
       
    43      * @since S60 v5.0
       
    44      * @return Application's UID (KUidMatrixMenuApp).
       
    45      */
       
    46 	TUid AppDllUid() const;
       
    47 
       
    48 protected:
       
    49 
       
    50 // from base class CApaApplication
       
    51 
       
    52 	/**
       
    53      * From CApaApplication.
       
    54      * Creates the Document.
       
    55      *
       
    56      * @since S60 v5.0
       
    57      * @return Instance of the Document.
       
    58      */
       
    59 	CApaDocument* CreateDocumentL();
       
    60 	
       
    61 	};
       
    62 
       
    63 #endif // C_MMAPPLICATION_H
       
    64 
       
    65 // End of File