36 lines
679 B
C++
36 lines
679 B
C++
#ifndef __ZmqcICEI_h__
|
|
#define __ZmqcICEI_h__
|
|
|
|
#include <proxy/MessageICE.h>
|
|
#include <log4cplus/LOG.h>
|
|
#include <zmqc/ConsumerMQ.h>
|
|
namespace baosight
|
|
{
|
|
class ZmqcICEI : virtual public MessageICE
|
|
{
|
|
public:
|
|
ZmqcICEI();
|
|
virtual ~ZmqcICEI();
|
|
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&);
|
|
};
|
|
}
|
|
|
|
#endif
|