sl@0: // Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // sl@0: sl@0: /** sl@0: @file sl@0: @internalComponent - Internal Symbian test code sl@0: */ sl@0: sl@0: #include "TTestEcomDataRec.h" sl@0: #include "TEcomDecpDataRec.h" sl@0: #include "TEcomLeavingRecognizer.h" sl@0: #include sl@0: #include sl@0: sl@0: sl@0: const TInt KNumDataTypes = 1; sl@0: const TUid KUid = {0x1d1f75ed}; sl@0: sl@0: sl@0: GLDEF_C TInt E32Dll( sl@0: ) sl@0: { sl@0: return KErrNone; sl@0: } sl@0: sl@0: sl@0: CTestEcomRecognizer::CTestEcomRecognizer():CApaDataRecognizerType(KUid, CApaDataRecognizerType::EHigh) sl@0: { sl@0: iCountDataTypes = KNumDataTypes; sl@0: } sl@0: sl@0: /* sl@0: Specifies the buffer size required by the data type sl@0: */ sl@0: TUint CTestEcomRecognizer::PreferredBufSize() sl@0: { sl@0: return 0; sl@0: } sl@0: sl@0: TDataType CTestEcomRecognizer::SupportedDataTypeL(TInt /*lIndex*/) const sl@0: { sl@0: return TDataType(_L8("dodgy/app")); sl@0: } sl@0: sl@0: /* sl@0: Should recognize the data type of the file. sl@0: Called by the RecognizeL function. sl@0: */ sl@0: void CTestEcomRecognizer::DoRecognizeL(const TDesC& /*aName*/, const TDesC8& /*aBuffer*/) sl@0: { sl@0: // does nothing sl@0: } sl@0: sl@0: sl@0: sl@0: CApaDataRecognizerType* CTestEcomRecognizer::CreateRecognizerL() sl@0: { sl@0: return new (ELeave) CTestEcomRecognizer(); sl@0: } sl@0: sl@0: const TImplementationProxy ImplementationTable[] = sl@0: { sl@0: IMPLEMENTATION_PROXY_ENTRY(0x101F7DA1,CTestEcomRecognizer::CreateRecognizerL), sl@0: IMPLEMENTATION_PROXY_ENTRY(0x102032A2,CTEcomDecpDataRec::CreateRecognizerL), sl@0: IMPLEMENTATION_PROXY_ENTRY(0x10203630,CEcomLeavingApplicationRec::CreateRecognizerL) sl@0: }; sl@0: sl@0: EXPORT_C const TImplementationProxy* ImplementationGroupProxy(TInt& aTableCount) sl@0: { sl@0: aTableCount = sizeof(ImplementationTable) / sizeof(TImplementationProxy); sl@0: return ImplementationTable; sl@0: }