28 lines
385 B
C
28 lines
385 B
C
|
|
#ifndef _H_zmqp_H
|
||
|
|
#define _H_zmqp_H
|
||
|
|
|
||
|
|
#include <pace/pace.h>
|
||
|
|
#include <pace/Component.h>
|
||
|
|
#include <log4cplus/LOG.h>
|
||
|
|
#include <zmqp/ZmqpICEI.h>
|
||
|
|
#include <glob/ConnectionMag.h>
|
||
|
|
|
||
|
|
namespace baosight
|
||
|
|
{
|
||
|
|
class zmqp : public Component
|
||
|
|
{
|
||
|
|
public :
|
||
|
|
zmqp();
|
||
|
|
virtual ~zmqp();
|
||
|
|
virtual int start();
|
||
|
|
|
||
|
|
private:
|
||
|
|
MessageICEPtr m_mqs_server;
|
||
|
|
|
||
|
|
private:
|
||
|
|
ConnectionMag* pconMag;
|
||
|
|
|
||
|
|
};
|
||
|
|
};
|
||
|
|
#endif
|