equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2002-2004 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 the License "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 * |
|
16 */ |
|
17 |
|
18 |
|
19 |
|
20 #ifndef PushViewerAppServer_H |
|
21 #define PushViewerAppServer_H |
|
22 |
|
23 // INCLUDES |
|
24 #include <AknServerApp.h> |
|
25 #include <ApaServerApp.h> |
|
26 |
|
27 |
|
28 // CLASS DECLARATION |
|
29 |
|
30 /** |
|
31 * ?one_line_short_description. |
|
32 * ?other_description_lines |
|
33 * |
|
34 * @lib ?library |
|
35 * @since Series ?XX ?SeriesXX_version |
|
36 */ |
|
37 class CPushViewerAppServer : public CAknAppServer |
|
38 { |
|
39 public: // Constructors and destructor |
|
40 |
|
41 CPushViewerAppServer(); |
|
42 |
|
43 public: // from CAknAppServer |
|
44 |
|
45 CApaAppServiceBase* CreateServiceL( TUid aServiceType ) const; |
|
46 |
|
47 protected: // from CPolicyServer |
|
48 |
|
49 virtual TCustomResult CustomFailureActionL( const RMessage2& aMsg, |
|
50 TInt aAction, |
|
51 const TSecurityInfo& aMissing ); |
|
52 }; |
|
53 |
|
54 #endif // PushViewerAppServer_H |
|
55 |
|
56 // End of File |