|
|
|
|
Location:
speechrecognitiondatadevasr.h
Link against: speechrecognitiondata.lib
class CSDResultSet : public CBase;
CSDResultSet encapsulates a set of result objects returned by the recognizer at the end of the recognition process. A result set may include additional diagnostic information for error analysis.
CBase - Base class for all classes to be instantiated on the heap
CSDResultSet - CSDResultSet encapsulates a set of result objects returned by the recognizer at the end of the recognition process
Defined in CSDResultSet:
Add(), At(), Count(), Diagnostic(), NewL(), NewLC(), SetDiagnostic(), ~CSDResultSet()
Inherited from CBase:
Delete(),
Extension_(),
operator new()
static IMPORT_C CSDResultSet *NewL();
Instantiates an instance of CSDResultSet.
|
static IMPORT_C CSDResultSet *NewLC();
Instantiates an instance of CSDResultSet and leaves a pointer on the cleanup stack.
|
IMPORT_C TInt Add(CSDResult &aResult);
Adds a result to the rule set.
|
|
IMPORT_C const CSDResult &At(TInt aIndex);
Returns a result at a given index within the result set.
|
|
IMPORT_C TInt Count() const;
Returns the number of results in the result set.
|
IMPORT_C void SetDiagnostic(TDiagnostic &aDiagnostic);
Sets the diagnostic of this result set.
|
IMPORT_C const TDiagnostic &Diagnostic() const;
Gets the diagnostic of this result set.
|