|
1 // Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies). |
|
2 // All rights reserved. |
|
3 // This component and the accompanying materials are made available |
|
4 // under the terms of "Eclipse Public License v1.0" |
|
5 // which accompanies this distribution, and is available |
|
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html". |
|
7 // |
|
8 // Initial Contributors: |
|
9 // Nokia Corporation - initial contribution. |
|
10 // |
|
11 // Contributors: |
|
12 // |
|
13 // Description: |
|
14 // |
|
15 |
|
16 /** |
|
17 @file |
|
18 @internalTechnology |
|
19 */ |
|
20 |
|
21 #ifndef CMTPIMAGEDPGETOBJECTPROPSSUPPORTED_H |
|
22 #define CMTPIMAGEDPGETOBJECTPROPSSUPPORTED_H |
|
23 |
|
24 #include "cmtprequestprocessor.h" |
|
25 |
|
26 class CMTPTypeArray; |
|
27 class CMTPImageDataProvider; |
|
28 |
|
29 /** |
|
30 Defines file data provider GetObjectPropsSupported request processor |
|
31 |
|
32 @internalTechnology |
|
33 */ |
|
34 class CMTPImageDpGetObjectPropsSupported : public CMTPRequestProcessor |
|
35 { |
|
36 public: |
|
37 static MMTPRequestProcessor* NewL( |
|
38 MMTPDataProviderFramework& aFramework, |
|
39 MMTPConnection& aConnection,CMTPImageDataProvider& aDataProvider); |
|
40 ~CMTPImageDpGetObjectPropsSupported(); |
|
41 |
|
42 private: |
|
43 CMTPImageDpGetObjectPropsSupported( |
|
44 MMTPDataProviderFramework& aFramework, |
|
45 MMTPConnection& aConnection); |
|
46 void ConstructL(); |
|
47 |
|
48 private: //from CMTPRequestProcessor |
|
49 virtual void ServiceL(); |
|
50 |
|
51 private: |
|
52 CMTPTypeArray* iObjectPropsSupported; |
|
53 |
|
54 /** |
|
55 FLOGGER debug trace member variable. |
|
56 */ |
|
57 __FLOG_DECLARATION_MEMBER_MUTABLE; |
|
58 }; |
|
59 |
|
60 #endif //CMTPIMAGEDPGETOBJECTPROPSSUPPORTED_H |
|
61 |