Device state and device state value implemented

This commit is contained in:
Stefan Persson 2010-10-15 12:38:12 +00:00
parent dfa1a2e897
commit ae5655abbe
7 changed files with 146 additions and 24 deletions

View file

@ -19,6 +19,7 @@ namespace TelldusCore {
std::wstring getClientWStringFromSocket();
static std::wstring charToWstring(const char *value);
static std::wstring charUnsignedToWstring(const unsigned char value);
static std::wstring intToWstring(int value);
static bool nextIsInt(const std::wstring &);
static bool nextIsString(const std::wstring &);
@ -26,8 +27,10 @@ namespace TelldusCore {
static std::wstring takeString(std::wstring *);
static int takeInt(std::wstring *);
private:
static int wideToInteger(const std::wstring &input);
private:
};
}