mmlibs/mmfw/src/Client/generic/MclRecog.cpp
changeset 0 40261b775718
equal deleted inserted replaced
-1:000000000000 0:40261b775718
       
     1 // Copyright (c) 1997-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 #include <e32std.h>
       
    17 #include <f32file.h>
       
    18 #include <s32strm.h>
       
    19 #include <barsread.h>
       
    20 #include "Mda/Client/Recognizer.h"
       
    21 
       
    22 #include "CompatAids.h"
       
    23 
       
    24 #ifdef __PANIC_COMPAT_IS_ACTIVE
       
    25 _LIT(KMdaResourceEntryParser, "TMdaResourceEntryParser");	
       
    26 #endif // __PANIC_COMPAT_IS_ACTIVE
       
    27 
       
    28 
       
    29 // *****************************************************************
       
    30 // TMdaResourceEntryParser
       
    31 // *****************************************************************
       
    32 
       
    33 EXPORT_C void TMdaResourceEntryParser::Set(const TDesC8& /*aResource*/)
       
    34 	{
       
    35 	__PANIC_COMPAT(User::Panic(KMdaResourceEntryParser, KMdaResourceEntryParserNotImplemented));
       
    36 	}
       
    37 
       
    38 EXPORT_C TUint TMdaResourceEntryParser::Count(TType /*aType*/) const
       
    39 	{
       
    40 	__PANIC_COMPAT(User::Panic(KMdaResourceEntryParser, KMdaResourceEntryParserNotImplemented));
       
    41 	return 0;
       
    42 	}
       
    43 
       
    44 EXPORT_C const TPtrC8 TMdaResourceEntryParser::Entry(TType /*aType*/, TInt /*aIndex*/) const
       
    45 	{
       
    46 	__PANIC_COMPAT(User::Panic(KMdaResourceEntryParser, KMdaResourceEntryParserNotImplemented));
       
    47 	return TPtrC8(KNullDesC8);
       
    48 	}
       
    49