BbmConferenceUserData
#include <bb/pim/calendar/BbmConferenceUserData>
To link against this class, add the following line to your .pro file: LIBS += -lbbpim
The BbmConferenceUserData class includes user data for a BBM conference call.
This class contains user-defined information for a BBM conference call. This information includes access code, moderator flag, and phone number.
BlackBerry 10.0.0
Public Functions Index
| BbmConferenceUserData () | |
| ~BbmConferenceUserData () | |
| BbmConferenceUserData (const BbmConferenceUserData &other) | |
| BbmConferenceUserData & | operator= (const BbmConferenceUserData &other) |
| QString | accessCode () const |
| bool | isModerator () const |
| QString | phoneNumber () const |
| void | setAccessCode (const QString &accessCode) |
| void | setModerator (bool moderator) |
| void | setPhoneNumber (const QString &phoneNumber) |
| bool | isValid () const |
Public Functions
Destructor.
BlackBerry 10.0.0
Copy constructor.
This function constructs a BbmConferenceUserData containing exactly the same values as the provided BbmConferenceUserData.
| Parameters | |
|---|---|
| other |
The BbmConferenceUserData to be copied. |
BlackBerry 10.0.0
BbmConferenceUserData &
Assignment operator.
This operator copies all values from the provided BbmConferenceUserData into this BbmConferenceUserData.
| Parameters | |
|---|---|
| other |
The BbmConferenceUserData from which to copy all values. |
A reference to this BbmConferenceUserData.
BlackBerry 10.0.0
QString
Retrieves the access code of this conference.
This function returns the access code that was selected by the user for this conference.
The user-selected access code.
BlackBerry 10.0.0
bool
Indicates whether the current user is the moderator of this conference.
true if the current user is the moderator, false otherwise.
BlackBerry 10.0.0
QString
Retrieves the phone number of this conference.
This function returns the phone number that was selected by the user for this conference.
The user-selected phone number.
BlackBerry 10.0.0
void
Sets the access code of this conference.
| Parameters | |
|---|---|
| accessCode |
The new access code. |
BlackBerry 10.0.0
void
Sets whether the current user is the moderator of this conference.
| Parameters | |
|---|---|
| moderator |
If true the current user is the moderator, if false the current user is not the moderator. |
BlackBerry 10.0.0
void
Sets the phone number for this conference.
| Parameters | |
|---|---|
| phoneNumber |
The new phone number. |
BlackBerry 10.0.0
bool
Indicates whether this BbmConferenceUserData is valid.
This function determines whether the attributes of this BbmConferenceUserData object have acceptable values.
true if this BbmConferenceUserData is valid, false otherwise.
BlackBerry 10.0.0