Subversion Repositories Projects

Compare Revisions

Ignore whitespace Rev 396 → Rev 395

/QMK-Groundstation/branches/own_com_lib/com/Communication.h
8,12 → 8,11
 
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) { return false; };
virtual void stopReSend() {};
virtual bool sendCmd(char, int, char[150],unsigned int, bool) {};
};
#endif