예제 #1
0
파일: socket.cpp 프로젝트: BWallet/czmqpp
void socket::destroy(context& ctx)
{
    CZMQPP_ASSERT(self_);
    zsocket_destroy(ctx.self(), self_);
}
예제 #2
0
파일: socket.cpp 프로젝트: BWallet/czmqpp
socket::socket(context& ctx, int type)
{
    self_ = zsocket_new(ctx.self(), type);
}