Go to the source code of this file.
|
| dabc |
| Event manipulation API.
|
|
◆ GET_PAR_FIELD
#define GET_PAR_FIELD |
( |
|
field_name, |
|
|
|
defvalue |
|
) |
| |
Value: if (GetObject()) { \
LockGuard guard(GetObject()->fObjectMutex); \
return GetObject()-> field_name; \
} \
return defvalue;
Definition at line 156 of file ConnectionRequest.h.
◆ SET_PAR_FIELD
#define SET_PAR_FIELD |
( |
|
field_name, |
|
|
|
value |
|
) |
| |
Value: if (GetObject()) { \
LockGuard guard(GetObject()->fObjectMutex); \
GetObject()-> field_name = value; \
}
Definition at line 163 of file ConnectionRequest.h.