38 lines
645 B
C
38 lines
645 B
C
|
|
/*********************************************************************
|
||
|
|
*
|
||
|
|
* file: zio
|
||
|
|
*
|
||
|
|
* copyright: Shanghai Baosight Software Co., Ltd.
|
||
|
|
*
|
||
|
|
* author: zoufuzhou
|
||
|
|
*********************************************************************/
|
||
|
|
#ifndef _H_ZONE_IO_H
|
||
|
|
#define _H_ZONE_IO_H
|
||
|
|
|
||
|
|
#include <pace/pace.h>
|
||
|
|
#include <pace/Component.h>
|
||
|
|
#include <log4cplus/LOG.h>
|
||
|
|
#include <zio/ZioICEI.h>
|
||
|
|
#include <glob/ConnectionMag.h>
|
||
|
|
|
||
|
|
|
||
|
|
namespace baosight
|
||
|
|
{
|
||
|
|
|
||
|
|
class zio : public Component
|
||
|
|
{
|
||
|
|
public :
|
||
|
|
zio();
|
||
|
|
|
||
|
|
virtual int start();
|
||
|
|
virtual ~zio();
|
||
|
|
|
||
|
|
private:
|
||
|
|
MessageICEPtr m_zio_server;
|
||
|
|
private:
|
||
|
|
ConnectionMag* pconMag;
|
||
|
|
|
||
|
|
};
|
||
|
|
};
|
||
|
|
#endif
|