equal
deleted
inserted
replaced
|
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 "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: App Server |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 |
|
20 #ifndef CMSGMAILEDITORAPPSERVER_H |
|
21 #define CMSGMAILEDITORAPPSERVER_H |
|
22 |
|
23 // INCLUDES |
|
24 #include <AknServerApp.h> // CAknServerApp |
|
25 #include <apaserverapp.h> |
|
26 |
|
27 |
|
28 // CLASS DECLARATION |
|
29 |
|
30 /** |
|
31 * Application server |
|
32 * |
|
33 * @since Series60_30 |
|
34 */ |
|
35 class CMsgMailEditorAppServer : public CAknAppServer |
|
36 { |
|
37 public: // from CAknAppServer |
|
38 CApaAppServiceBase* CreateServiceL( TUid aServiceType ) const; |
|
39 |
|
40 ~CMsgMailEditorAppServer(); |
|
41 |
|
42 protected: // from CPolicyServer |
|
43 virtual TCustomResult CustomFailureActionL( |
|
44 const RMessage2& aMsg, |
|
45 TInt aAction, |
|
46 const TSecurityInfo& aMissing); |
|
47 }; |
|
48 |
|
49 #endif // CMSGMAILEDITORAPPSERVER_H |
|
50 |
|
51 // End of File |