#ifndef GR_ESB_BRIDGE_H #define GR_ESB_BRIDGE_H #include "abstractspwbridge.h" #include class GR_ESB_bridge : public abstractSpwBridge { Q_OBJECT public: explicit GR_ESB_bridge(socexplorerplugin *parent = 0); ~GR_ESB_bridge(); signals: public slots: bool connectBridge(); bool disconnectBridge(); unsigned int Write(unsigned int *Value,unsigned int count, unsigned int address=0); unsigned int Read(unsigned int *Value,unsigned int count, unsigned int address=0); int pushRMAPPacket(char* packet,int size); void packetReceived(); QTcpSocket* soc; }; #endif // GR_ESB_BRIDGE_H