|
|
|
|
Location:
speechrecognitiondatadevasr.h
Link against: speechrecognitiondata.lib
class CSDResult : public CBase;
Class to encapsulate a Recognition Result
CBase - Base class for all classes to be instantiated on the heap
CSDResult - Class to encapsulate a Recognition Result
Defined in CSDResult:
GrammarID(), NewL(), NewL(), NewLC(), NewLC(), RuleID(), Score(), SetGrammarID(), SetRuleID(), SetScore(), ~CSDResult()
Inherited from CBase:
Delete(),
Extension_(),
operator new()
static IMPORT_C CSDResult *NewL();
Instantiates an instance of a CSDResult.
|
static IMPORT_C CSDResult *NewLC();
Instantiates an instance of CSDResult and leaves a pointer on the cleanup stack.
|
static IMPORT_C CSDResult *NewL(TGrammarID aGrammarID, TRuleID aRuleID);
Instantiates an instance of a CSDResult.
|
|
static IMPORT_C CSDResult *NewLC(TGrammarID aGrammarID, TRuleID aRuleID);
Instantiates an instance of a CSDResult and leaves a pointer on the cleanup stack.
|
|
IMPORT_C void SetGrammarID(TGrammarID aGrammarID);
Sets the grammar ID on the result.
|
IMPORT_C TGrammarID GrammarID() const;
Returns the grammar ID of the result.
|
IMPORT_C void SetRuleID(TRuleID aRuleID);
Sets the rule ID of the result.
|
IMPORT_C TRuleID RuleID() const;
Returns the rule ID of the result.
|
IMPORT_C void SetScore(const TInt32 aScore);
Sets the score for this result.
|
IMPORT_C TInt32 Score() const;
Returns the score of this result.
|