Exemple #1
0
///
//  Set group on frame. This is used if/when the frame is sent to a
//  ZMQ_RADIO socket.                                              
//  Return -1 on error, 0 on success.                              
int QZframe::setGroup (const QString &group)
{
    int rv = zframe_set_group (self, group.toUtf8().data());
    return rv;
}
Exemple #2
0
///
//  Set group on frame. This is used if/when the frame is sent to a
//  ZMQ_RADIO socket.
//  Return -1 on error, 0 on success.
int QmlZframe::setGroup (const QString &group) {
    return zframe_set_group (self, group.toUtf8().data());
};