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: |
|
15 * This class is part of application framework. |
|
16 * |
|
17 */ |
|
18 |
|
19 |
|
20 #ifndef __CVRAPPSERVER_H__ |
|
21 #define __CVRAPPSERVER_H__ |
|
22 |
|
23 // INCLUDES |
|
24 #include <AknServerApp.h> |
|
25 #include <CNewFileServiceBase.h> |
|
26 |
|
27 // CONSTANTS |
|
28 |
|
29 // CLASS DECLARATION |
|
30 /** |
|
31 * This class is part of new file service framework. |
|
32 */ |
|
33 class CVRAppServer |
|
34 : public CAknAppServer |
|
35 { |
|
36 |
|
37 public: // from CAknAppServer |
|
38 CApaAppServiceBase* CreateServiceL( TUid aServiceType ) const; |
|
39 |
|
40 public: |
|
41 MNewFileServiceObserver* NewFileServiceObserver() const; |
|
42 |
|
43 private: |
|
44 mutable MNewFileServiceObserver* iNewFileServiceObserver; |
|
45 }; |
|
46 |
|
47 #endif // __CVNEWFILESERVICE_H__ |
|
48 |
|