telldus/telldus-core/service/ProtocolX10.h
2011-05-12 15:11:30 +00:00

16 lines
352 B
C++

#ifndef PROTOCOLX10_H
#define PROTOCOLX10_H
#include "Protocol.h"
#include "ControllerMessage.h"
class ProtocolX10 : public Protocol
{
public:
int methods() const;
virtual std::string getStringForMethod(int method, unsigned char data, Controller *controller);
static std::string decodeData(ControllerMessage& dataMsg);
};
#endif //PROTOCOLX10_H