First public contribution.
1 // Copyright (c) 2005-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".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
18 @internalComponent - Internal Symbian test code
21 #include "TTestEcomDataRec.h"
22 #include "TEcomDecpDataRec.h"
23 #include "TEcomLeavingRecognizer.h"
25 #include <ecom/implementationproxy.h>
28 const TInt KNumDataTypes = 1;
29 const TUid KUid = {0x1d1f75ed};
39 CTestEcomRecognizer::CTestEcomRecognizer():CApaDataRecognizerType(KUid, CApaDataRecognizerType::EHigh)
41 iCountDataTypes = KNumDataTypes;
45 Specifies the buffer size required by the data type
47 TUint CTestEcomRecognizer::PreferredBufSize()
52 TDataType CTestEcomRecognizer::SupportedDataTypeL(TInt /*lIndex*/) const
54 return TDataType(_L8("dodgy/app"));
58 Should recognize the data type of the file.
59 Called by the RecognizeL function.
61 void CTestEcomRecognizer::DoRecognizeL(const TDesC& /*aName*/, const TDesC8& /*aBuffer*/)
68 CApaDataRecognizerType* CTestEcomRecognizer::CreateRecognizerL()
70 return new (ELeave) CTestEcomRecognizer();
73 const TImplementationProxy ImplementationTable[] =
75 IMPLEMENTATION_PROXY_ENTRY(0x101F7DA1,CTestEcomRecognizer::CreateRecognizerL),
76 IMPLEMENTATION_PROXY_ENTRY(0x102032A2,CTEcomDecpDataRec::CreateRecognizerL),
77 IMPLEMENTATION_PROXY_ENTRY(0x10203630,CEcomLeavingApplicationRec::CreateRecognizerL)
80 EXPORT_C const TImplementationProxy* ImplementationGroupProxy(TInt& aTableCount)
82 aTableCount = sizeof(ImplementationTable) / sizeof(TImplementationProxy);
83 return ImplementationTable;