equal
deleted
inserted
replaced
1 /* |
|
2 * Copyright (c) 2007 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: Class for new file service application* |
|
15 */ |
|
16 |
|
17 |
|
18 |
|
19 #ifndef CAMSERVER_H |
|
20 #define CAMSERVER_H |
|
21 |
|
22 // INCLUDES |
|
23 |
|
24 #include <CNewFileServiceBase.h> |
|
25 #include <AknServerApp.h> |
|
26 |
|
27 // CLASS DECLARATION |
|
28 |
|
29 /** |
|
30 * Application server class. |
|
31 * Provides factory to create concrete file server application object. |
|
32 * @since 3.0 |
|
33 */ |
|
34 class CCamAppServer : public CAknAppServer |
|
35 { |
|
36 public: // from AknAppServer |
|
37 |
|
38 IMPORT_C CApaAppServiceBase* CreateServiceL( TUid aServiceType) const; |
|
39 |
|
40 public: |
|
41 /* |
|
42 * Returns pointer to new file server application |
|
43 * @since 3.0 |
|
44 */ |
|
45 MNewFileServiceObserver* NewFileServiceObserver() const; |
|
46 |
|
47 private: |
|
48 mutable MNewFileServiceObserver* iNewFileServiceObserver; |
|
49 }; |
|
50 |
|
51 #endif // CAMSERVER_H |
|
52 // End of File |
|
53 |
|