eis/inc/zmqp/ZmqpICEI.h

38 lines
720 B
C
Raw Permalink Normal View History

#ifndef __ZmqpICEI_h__
#define __ZmqpICEI_h__
#include <proxy/MessageICE.h>
#include <log4cplus/LOG.h>
#include <zmqp/ProducerMQ.h>
namespace baosight
{
class ZmqpICEI : virtual public MessageICE
{
public:
ZmqpICEI();
virtual ~ZmqpICEI();
public:
virtual void SendDataShort(::Ice::Int,
const ::Ice::ByteSeq&,
::Ice::Int,
const Ice::Current&);
virtual void SendDataLong(::Ice::Int,
const ::Ice::ByteSeq&,
::Ice::Int,
const ::std::string&,
const ::std::string&,
const ::std::string&,
const Ice::Current&);
virtual void TimeNotify(::Ice::Int,
const ::Ice::ByteSeq&,
const Ice::Current&);
private:
string m_mqserver;
};
}
#endif