Subversion Repositories Projects

Rev

Rev 392 | Go to most recent revision | Blame | Last modification | View Log | RSS feed

#ifndef QT_COMMUNICATION_H
#define QT_COMMUNICATION_H
#include <Communication.h>

/**
 * QT specific communication class
 * based on the communication interface
 * using the SerialPort implementation
 * by VIANNEY-LIAUD Philippe
 * ( philippe.vianney.liaud gmail.com )
 */


using namespace std;

class QTCommunication : public Communication {
    public:
        void connectMK(string addr);
        bool sendCmd(char cmd, int address, char data[150], unsigned int length, bool resend);
        void stopReSend();
};
#endif