##// END OF EJS Templates
Sync
Sync

File last commit:

r23:c8236d174134 default
r23:c8236d174134 default
Show More
gr_esb_bridge.h
27 lines | 635 B | text/x-c | CLexer
#ifndef GR_ESB_BRIDGE_H
#define GR_ESB_BRIDGE_H
#include "abstractspwbridge.h"
#include <QTcpSocket>
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