#include <sensrvchannelcondition.h>
class CSensrvChannelCondition : public CBase |
Public Member Functions | |
---|---|
CSensrvChannelCondition() | |
pure virtual TInt | ConditionItemIndex() |
pure virtual TInt | ConditionOperator() |
pure virtual TInt | ConditionType() |
pure virtual const TDesC8 & | ConditionValue() |
pure virtual TInt | GetConditionValue(TDes8 &) |
IMPORT_C CSensrvChannelCondition * | NewL(TInt, TInt, TInt, TDesC8 &) |
IMPORT_C CSensrvChannelCondition * | NewLC(TInt, TInt, TInt, TDesC8 &) |
CSensrvChannelCondition represents a channel condition item. Channel conditions are added to a channel condition set. A channel condition set is met when all channel conditions are met at the same time, if it is AND-type set, or when single condition is met if it is OR-type set. Only one channel condition can be set for each data item in single channel condition set. Certain condition types (range conditions) require two condition objects (upper and lower limit) in a condition set for the set to be valid. The pair of conditions must both have the same index in the condition set and they are considered a single channel condition.
Each Condition has an ItemIndex associated with it. When a Condition is added to a Condition Set using CSensrvChannelConditionSet::AddChannelConditionL() this index must be different to all other conditions added to the set with the exception of range conditions as described above. If the index supplied already exists and the condition is not part of a range condition then CSensrvChannelConditionSet::AddChannelConditionL() leaves with KErrArgument.
See also: CSensrvChannelConditionSet TSensrvConditionType TSensrvConditionOperator
TInt | ConditionItemIndex | ( | ) | const [pure virtual] |
Get condition item index
Returns: TInt Condition item index
TInt | ConditionOperator | ( | ) | const [pure virtual] |
Get condition operator
Returns: TInt Condition operator
const TDesC8 & | ConditionValue | ( | ) | const [pure virtual] |
Get condition value as reference.
Returns: Reference to condition value descriptor.
IMPORT_C CSensrvChannelCondition * | NewL | ( | TInt | aConditionType, |
TInt | aConditionOperator, | |||
TInt | aItemIndex, | |||
TDesC8 & | aValue | |||
) | [static] |
Two-phase constructor
Parameter | Description |
---|---|
aConditionType | Defines the type of the condition |
aConditionOperator | Defines the operator used in the condition |
aItemIndex | Item index to be used in the condition evaluation |
aValue | Value to be used in condition evaluation. By default this should be a packaged data object of the channel. See the channel specific headers in . If the channel type requires a different type of value, that must be indicated clearly in the channel specific header defining the channel. |
Returns: Pointer to created object
IMPORT_C CSensrvChannelCondition * | NewLC | ( | TInt | aConditionType, |
TInt | aConditionOperator, | |||
TInt | aItemIndex, | |||
TDesC8 & | aValue | |||
) | [static] |
Two-phase constructor
Parameter | Description |
---|---|
aConditionType | Defines the type of the condition |
aConditionOperator | Defines the operator used in the condition |
aItemIndex | Item index to be used in the condition evaluation |
aValue | Value to be used in condition evaluation. By default this should be a packaged data object of the channel. See the channel specific headers in . If the channel type requires a different type of value, that must be indicated clearly in the channel specific header defining the channel. |
Returns: Pointer to created object