mirror of
https://github.com/FairRootGroup/FairMQ.git
synced 2025-10-15 17:41:45 +00:00
move zeromq and nanomsg implementation files to separate directories
This commit is contained in:
25
fairmq/zeromq/FairMQContextZMQ.h
Normal file
25
fairmq/zeromq/FairMQContextZMQ.h
Normal file
@@ -0,0 +1,25 @@
|
||||
/**
|
||||
* FairMQContext.h
|
||||
*
|
||||
* @since 2012-12-05
|
||||
* @author D. Klein, A. Rybalchenko
|
||||
*/
|
||||
|
||||
#ifndef FAIRMQCONTEXTZMQ_H_
|
||||
#define FAIRMQCONTEXTZMQ_H_
|
||||
|
||||
#include <zmq.h>
|
||||
|
||||
class FairMQContextZMQ
|
||||
{
|
||||
public:
|
||||
FairMQContextZMQ(int numIoThreads);
|
||||
virtual ~FairMQContextZMQ();
|
||||
void* GetContext();
|
||||
void Close();
|
||||
|
||||
private:
|
||||
void* fContext;
|
||||
};
|
||||
|
||||
#endif /* FAIRMQCONTEXTZMQ_H_ */
|
Reference in New Issue
Block a user