os/ossrv/genericservices/mimerecognitionfw/inc/APMREC.INL
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     2
// All rights reserved.
sl@0
     3
// This component and the accompanying materials are made available
sl@0
     4
// under the terms of "Eclipse Public License v1.0"
sl@0
     5
// which accompanies this distribution, and is available
sl@0
     6
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     7
//
sl@0
     8
// Initial Contributors:
sl@0
     9
// Nokia Corporation - initial contribution.
sl@0
    10
//
sl@0
    11
// Contributors:
sl@0
    12
//
sl@0
    13
// Description:
sl@0
    14
//
sl@0
    15
sl@0
    16
inline TInt CApaDataRecognizerType::MimeTypesCount() const
sl@0
    17
/** Gets the number of data (MIME) types supported by this recognizer.
sl@0
    18
sl@0
    19
@return The number of data types.
sl@0
    20
@see iCountDataTypes */
sl@0
    21
	{
sl@0
    22
	return iCountDataTypes;
sl@0
    23
	}
sl@0
    24
sl@0
    25
inline TUid CApaDataRecognizerType::TypeUid() const
sl@0
    26
/** Gets the UID that identifies the recognizer.
sl@0
    27
sl@0
    28
@return The UID. */
sl@0
    29
	{
sl@0
    30
	return iTypeUid;
sl@0
    31
	}
sl@0
    32
sl@0
    33
inline TInt CApaDataRecognizerType::Priority() const
sl@0
    34
/** Gets the recognizer's priority.
sl@0
    35
sl@0
    36
The priority defines the likelihood that the recognizer will successfully 
sl@0
    37
identify data. This is one of the CApaDataRecognizerType::TRecognizerPriority 
sl@0
    38
enumerators.
sl@0
    39
sl@0
    40
@return The priority value.
sl@0
    41
@see CApaDataRecognizerType::TRecognizerPriority */
sl@0
    42
	{
sl@0
    43
	return iPriority;
sl@0
    44
	}
sl@0
    45
	
sl@0
    46
inline TInt CApaDataRecognizerType::Confidence() const
sl@0
    47
/** Gets the recognizer's confidence rating for the most recently recognized data.
sl@0
    48
sl@0
    49
@return The confidence rating. This is one of the TRecognitionConfidence enumeration 
sl@0
    50
values.
sl@0
    51
@see CApaDataRecognizerType::TRecognitionConfidence
sl@0
    52
@see iConfidence */
sl@0
    53
	{
sl@0
    54
	return iConfidence;
sl@0
    55
	}
sl@0
    56
sl@0
    57
inline TInt CApaDataRecognizerType::Locked() const
sl@0
    58
/** Tests whether the recognizer is locked.
sl@0
    59
sl@0
    60
@return If zero, the recognizer is not locked; if greater than 0, the recognizer 
sl@0
    61
is locked.
sl@0
    62
@see Lock()
sl@0
    63
@see Unlock() */
sl@0
    64
	{
sl@0
    65
	return iLock;
sl@0
    66
	}
sl@0
    67
sl@0
    68
#ifndef SYMBIAN_ENABLE_SPLIT_HEADERS
sl@0
    69
sl@0
    70
// Deprecated - Use CApaDataRecognizer::AddDataRecognizerTypeL instead 
sl@0
    71
// as adding a concrete recognizer into the list could leave.
sl@0
    72
/**
sl@0
    73
@deprecated 7.0s
sl@0
    74
*/
sl@0
    75
inline void CApaDataRecognizer::AddDataRecognizerType(CApaDataRecognizerType* aDataRecognizerType)
sl@0
    76
	{
sl@0
    77
	AddDataRecognizerTypeL(aDataRecognizerType);
sl@0
    78
	}
sl@0
    79
sl@0
    80
#endif //SYMBIAN_ENABLE_SPLIT_HEADERS