diff --git a/telldus-core/service/ProtocolGroup.cpp b/telldus-core/service/ProtocolGroup.cpp new file mode 100644 index 00000000..a832be1b --- /dev/null +++ b/telldus-core/service/ProtocolGroup.cpp @@ -0,0 +1,9 @@ +#include "ProtocolGroup.h" + +int ProtocolGroup::methods() const { + return 0; +} + +std::string ProtocolGroup::getStringForMethod(int method, unsigned char data, Controller *) { + return ""; +} \ No newline at end of file diff --git a/telldus-core/service/ProtocolGroup.h b/telldus-core/service/ProtocolGroup.h new file mode 100644 index 00000000..b75e36e3 --- /dev/null +++ b/telldus-core/service/ProtocolGroup.h @@ -0,0 +1,16 @@ +#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 + + +