»
Symbian OS v9.3 »
Symbian OS reference »
C++ component reference »
System Libraries BAFL »
TBitFlagsT
class TBitFlagsT;
Description
A simple class which manages the process of setting and clearing flags in an abstract fashion.
Members
Defined in TBitFlagsT
:
Assign()
, Clear()
, ClearAll()
, IsClear()
, IsSet()
, Set()
, SetAll()
, SetValue()
, TBitFlagsT()
, TBitFlagsT()
, TBitFlagsT()
, Toggle()
, Value()
, iFlags
, operator=()
, operator==()
, operator[]()
Construction and destruction
inline TBitFlagsT();
Description
Default constructor - initialize all flags to zero
inline TBitFlagsT(T aFlags);
Description
Initialize the whole flag to a certain value
Parameters
inline TBitFlagsT(const TBitFlagsT &aFlags);
Description
Copy constructor - initialize this flag object to mirror that of aFlags.
Parameters
inline void SetAll();
Description
Set all the flags
inline void ClearAll();
Description
Clear all the flags
inline void Set(TInt aFlagIndex);
Description
Set a particular flag
Parameters
inline void Clear(TInt aFlagIndex);
Description
Clear a particular flag
Parameters
inline void Assign(TInt aFlagIndex, TBool aValue);
Description
Set or clear a particular flag
If aValue is 1, then the flag is set If aValue is 0, then the flag is cleared
Parameters
inline void Toggle(TInt aFlagIndex);
Description
Change the state of a particular flag. If the flag at the specified index was clear, then it becomes set, otherwise it becomes
clear.
Parameters
inline TBool operator[](TInt aFlagIndex) const;
Description
Check if a particular flag is set or not
Parameters
Return value
TBool
|
A boolean indicating whether the specified flag is set or clear
|
|
inline TBitFlagsT &operator=(const TBitFlagsT &aFlags);
Description
Assignment operator - assign specific value to the whole flag, replacing any existing value.
Parameters
Return value
inline TBool operator==(const TBitFlagsT &aFlags);
Description
Compare the value of the whole flag with a given value.
Parameters
Return value
TBool
|
A boolean indicating whether the two flags are identical.
|
|
inline TBool IsSet(TInt aFlagIndex) const;
Description
Check if a particular flag is set
Parameters
Return value
inline TBool IsClear(TInt aFlagIndex) const;
Description
Check if a particular flag is clear
Parameters
Return value
inline T Value() const;
Description
Access the underlying value of the flag.
Return value
inline void SetValue(T aFlags);
Description
Assign a new value (directly) to this flag object. Replaces any existing individual flag settings.
Parameters