equal
deleted
inserted
replaced
|
1 // Copyright (c) 2004-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 #ifndef JPEGEXIFPLUGIN_H |
|
17 #define JPEGEXIFPLUGIN_H |
|
18 |
|
19 #include <iclexif.h> |
|
20 |
|
21 /** |
|
22 @internalTechnology |
|
23 */ |
|
24 class CJPEGExifDecoder::CBody : public CBase |
|
25 { |
|
26 public: |
|
27 IMPORT_C static CJPEGExifDecoder::CBody* NewL(CJPEGExifDecoder& aHandle); |
|
28 |
|
29 IMPORT_C MExifMetadata* ExifMetadata(); |
|
30 |
|
31 private: |
|
32 CBody(CJPEGExifDecoder& aHandle); |
|
33 CJPEGExifDecoder& iHandle; |
|
34 }; |
|
35 |
|
36 |
|
37 /** |
|
38 @internalTechnology |
|
39 */ |
|
40 class CJPEGExifEncoder::CBody : public CBase |
|
41 { |
|
42 public: |
|
43 IMPORT_C static CJPEGExifEncoder::CBody* NewL(CJPEGExifEncoder& aHandle); |
|
44 |
|
45 IMPORT_C MExifMetadata* ExifMetadata(); |
|
46 |
|
47 private: |
|
48 CBody(CJPEGExifEncoder& aHandle); |
|
49 CJPEGExifEncoder& iHandle; |
|
50 }; |
|
51 |
|
52 |
|
53 #endif // JPEGEXIFPLUGIN_H |
|
54 |