equal
deleted
inserted
replaced
|
1 // Copyright (c) 2001-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 // This is the public client API for the Image Conversion Library |
|
15 // |
|
16 // |
|
17 |
|
18 /** |
|
19 @file |
|
20 @internalComponent |
|
21 @prototype |
|
22 */ |
|
23 #ifndef ICLRECOGNIZERUTIL_H |
|
24 #define ICLRECOGNIZERUTIL_H |
|
25 |
|
26 /** |
|
27 @internalComponent |
|
28 |
|
29 ICL utility class used by ICL recognizer |
|
30 Maintains an array of CImplementationInformation objects |
|
31 so that data headers can be speedily matched against. |
|
32 Updates the array when notified by ECOM of a change to the global |
|
33 interface implementation registration data. |
|
34 */ |
|
35 NONSHARABLE_CLASS( CIclRecognizerUtil ) : public CBase |
|
36 { |
|
37 public: |
|
38 IMPORT_C static CIclRecognizerUtil* NewL(); |
|
39 ~CIclRecognizerUtil(); |
|
40 IMPORT_C TBool GetMimeTypeL(const TDesC8& aImageData, const TDesC& aFileName, TDes8& aMimeType); |
|
41 |
|
42 private: |
|
43 CIclRecognizerUtil(); |
|
44 void ConstructL(); |
|
45 |
|
46 private: |
|
47 class CBody; |
|
48 CBody* iBody; |
|
49 }; |
|
50 |
|
51 #endif // ICLRECOGNIZERUTIL_H |
|
52 |