mobilemessaging/audiomsg/inc/audiomessageapp.h
changeset 0 72b543305e3a
equal deleted inserted replaced
-1:000000000000 0:72b543305e3a
       
     1 /*
       
     2 * Copyright (c) 2005-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:   Provides audiomessageapp prototypes
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 
       
    21 #ifndef _AUDIOMESSAGEAPP_H
       
    22 #define _AUDIOMESSAGEAPP_H
       
    23 
       
    24 
       
    25 #include <aknapp.h> 
       
    26 
       
    27 
       
    28 class CApaAppServer;
       
    29 
       
    30 /**
       
    31  *  CAudioMessageApplication
       
    32  *
       
    33  *  Application class
       
    34  *
       
    35  *  @lib audiomessage.exe
       
    36  *  @since S60 v3.1
       
    37  */
       
    38 
       
    39 class CAudioMessageApplication : public CAknApplication
       
    40     {
       
    41 	// From CEikApplication
       
    42 	private:    
       
    43     /**
       
    44     * Create CEditorDocument document object.
       
    45     */
       
    46     CApaDocument* CreateDocumentL();    // abstract in CEikApplication
       
    47 
       
    48 	/**
       
    49 	* Called by CEikonEnv when new server application is created 
       
    50 	*/
       
    51 	void NewAppServerL( CApaAppServer*& aAppServer );
       
    52 
       
    53 	// From CApaApplication (via CEikApplication)
       
    54     private:     
       
    55 
       
    56     /**
       
    57     * Return KUideditor.
       
    58     */
       
    59     TUid AppDllUid() const; // abstract in CApaApplication
       
    60 
       
    61     };
       
    62 
       
    63 #endif  // _AUDIOMESSAGEAPP_H
       
    64