mirror of
https://github.com/FairRootGroup/FairMQ.git
synced 2025-10-13 08:41:16 +00:00
23 lines
448 B
C++
23 lines
448 B
C++
/**
|
|
* FairMQTransportFactoryZMQ.cxx
|
|
*
|
|
* @since 2014-01-20
|
|
* @author: A. Rybalchenko
|
|
*/
|
|
|
|
#include "FairMQTransportFactoryZMQ.h"
|
|
|
|
FairMQTransportFactoryZMQ::FairMQTransportFactoryZMQ()
|
|
{
|
|
|
|
}
|
|
|
|
FairMQMessage* FairMQTransportFactoryZMQ::CreateMessage()
|
|
{
|
|
return new FairMQMessageZMQ();
|
|
}
|
|
|
|
FairMQSocket* FairMQTransportFactoryZMQ::CreateSocket(FairMQContext* context, int type, int num)
|
|
{
|
|
return new FairMQSocketZMQ(context, type, num);
|
|
} |