telldus/telldus-core/service/ControllerMessage.h

20 lines
No EOL
395 B
C++

#ifndef CONTROLLERMESSAGE_H
#define CONTROLLERMESSAGE_H
#include <string>
class ControllerMessage {
public:
ControllerMessage(const std::string &rawMessage);
virtual ~ControllerMessage();
std::string getParameter(const std::string &key);
int method() const;
std::wstring protocol() const;
private:
class PrivateData;
PrivateData *d;
};
#endif //CONTROLLERMESSAGE_H