mobilemessaging/postcard/postcardinc/PostcardAppServer.h
changeset 0 72b543305e3a
equal deleted inserted replaced
-1:000000000000 0:72b543305e3a
       
     1 /*
       
     2 * Copyright (c) 2005 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 *     Postcard server Application class definition.
       
    16 *
       
    17 */
       
    18 
       
    19 
       
    20 
       
    21 #ifndef POSTCARDAPPSERVER_H
       
    22 #define POSTCARDAPPSERVER_H
       
    23 
       
    24 // INCLUDES
       
    25 #include <AknServerApp.h>                 // CAknServerApp
       
    26 
       
    27 // CLASS DECLARATION
       
    28 
       
    29 class CPostcardAppServer : public CAknAppServer
       
    30     {
       
    31 
       
    32     public: // from CAknAppServer
       
    33 
       
    34 	/*
       
    35 	* Creates an instance of the service aServiceType
       
    36 	*/
       
    37     CApaAppServiceBase* CreateServiceL( TUid aServiceType ) const;
       
    38 
       
    39 	/*
       
    40 	* Destructor
       
    41 	*/
       
    42     ~CPostcardAppServer( );
       
    43 
       
    44     protected: // from CPolicyServer
       
    45 
       
    46     /*
       
    47     * An empty implementation of this pure virtual CPolicyServer function
       
    48     */
       
    49 	TCustomResult CustomFailureActionL(const RMessage2& aMsg, TInt aAction, const TSecurityInfo& aMissing);
       
    50 
       
    51     };
       
    52 
       
    53 #endif      //  POSTCARDAPPSERVER_H
       
    54   
       
    55 // End of File