Subversion Repositories Projects

Rev

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

Rev 396 Rev 397
Line 9... Line 9...
9
using namespace std;
9
using namespace std;
Line 10... Line 10...
10
 
10
 
11
class Communication{
11
class Communication{
12
    public:
12
    public:
13
        //connect to MK
13
        //connect to MK
14
        virtual void connectMK(string) {};
14
        virtual void connect_MK(string) {};
15
        //send command to MK
15
        //send command to MK
16
        virtual bool sendCmd(char, int, char[150],unsigned int, bool) { return false; };
16
        virtual bool send_cmd(char, int, char[150],unsigned int, bool) { return false; };
17
        virtual void stopReSend() {};
17
        virtual void stop_resend() {};
18
};
18
};
19
#endif
19
#endif