Update contrib.
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 "TEcomLeavingRecognizer.h"
25 const TInt KNumDataTypes = 1;
26 const TUid KUid = {0x10203630};
29 CApaDataRecognizerType* CEcomLeavingApplicationRec::CreateRecognizerL()
31 return new (ELeave) CEcomLeavingApplicationRec;
34 CEcomLeavingApplicationRec::CEcomLeavingApplicationRec():CApaDataRecognizerType(KUid, CApaDataRecognizerType::EHigh)
36 iCountDataTypes = KNumDataTypes;
40 Specifies the buffer size required by the data type
42 TUint CEcomLeavingApplicationRec::PreferredBufSize()
48 Should return one of the supported data types based on index sent.
50 TDataType CEcomLeavingApplicationRec::SupportedDataTypeL(TInt /*lIndex*/) const
52 // This function is made to leave, just to reproduce the defect:
53 // DEF038928 - App Arc server/ Recogniser needs to be more robust.
54 User::Leave(KErrNoMemory);
55 return TDataType(_L8("dodgy/app"));
59 Should recognize the data type of the file.
60 Called by the RecognizeL function.
62 void CEcomLeavingApplicationRec::DoRecognizeL(const TDesC& /*aName*/, const TDesC8& /*aBuffer*/)