equal
deleted
inserted
replaced
|
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 server applicaion prototypes |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 |
|
20 |
|
21 #ifndef AUDIOMESSAGEAPPSERVER_H |
|
22 #define AUDIOMESSAGEAPPSERVER_H |
|
23 |
|
24 #include <AknServerApp.h> |
|
25 |
|
26 /** |
|
27 * CAudioMessageAppServer |
|
28 * |
|
29 * Applicationserver class |
|
30 * |
|
31 * @lib audiomessage.exe |
|
32 * @since S60 v3.1 |
|
33 */ |
|
34 class CAudioMessageAppServer : public CAknAppServer |
|
35 { |
|
36 // from CAknAppServer |
|
37 public: |
|
38 /* |
|
39 * Creates an instance of the service aServiceType |
|
40 */ |
|
41 CApaAppServiceBase* CreateServiceL( TUid aServiceType ) const; |
|
42 |
|
43 /* |
|
44 * Destructor |
|
45 */ |
|
46 ~CAudioMessageAppServer( ); |
|
47 |
|
48 // from CPolicyServer |
|
49 protected: |
|
50 /* |
|
51 * An empty implementation of this pure virtual CPolicyServer function |
|
52 */ |
|
53 TCustomResult CustomFailureActionL(const RMessage2& aMsg, TInt aAction, |
|
54 const TSecurityInfo& aMissing); |
|
55 |
|
56 }; |
|
57 |
|
58 #endif // AUDIOMESSAGEAPPSERVER_H |
|
59 |