telldus/telldus-core/service/ProtocolGroup.h
2010-11-16 09:43:33 +00:00

16 lines
284 B
C++

#ifndef PROTOCOLGROUP_H
#define PROTOCOLGROUP_H
#include "Protocol.h"
class ProtocolGroup : public Protocol {
public:
virtual int methods() const;
virtual std::string getStringForMethod(int method, unsigned char data, Controller *controller);
};
#endif //PROTOCOLGROUP_H