arzmq-sys 0.6.3

Low-level bindings to the zeromq library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/*
 *  TCPEvent.cpp
 *
 *  Created by Ian Taylor on 11/01/2007.
 *
 */
 
#include "TCPEvent.h"
 
TCPEvent::TCPEvent(Event theType, void *source, void *theData, int theDataSize) {
	type=theType;
	data=theData;
	dataSize=theDataSize;
	sourceObject=source;
	flags=0;
	}