Subversion Repositories Projects

Rev

Rev 396 | Rev 440 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 396 Rev 397
Line 12... Line 12...
12
 
12
 
Line 13... Line 13...
13
using namespace std;
13
using namespace std;
14
 
14
 
15
class QTCommunication : public Communication {
15
class QTCommunication : public Communication {
16
    public:
16
    public:
17
        void connectMK(string addr);
17
        void connect_MK(string addr);
18
        bool sendCmd(char cmd, int address, char data[150], unsigned int length, bool resend);
18
        bool send_cmd(char cmd, int address, char data[150], unsigned int length, bool resend);
19
        void stopReSend();
19
        void stop_resend();
20
};
20
};