Subversion Repositories Projects

Compare Revisions

Ignore whitespace Rev 395 → Rev 396

/QMK-Groundstation/branches/own_com_lib/com/Communication.h
8,11 → 8,12
 
using namespace std;
 
class Communication {
class Communication{
public:
//connect to MK
virtual void connectMK(string) {};
//send command to MK
virtual bool sendCmd(char, int, char[150],unsigned int, bool) {};
virtual bool sendCmd(char, int, char[150],unsigned int, bool) { return false; };
virtual void stopReSend() {};
};
#endif