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

@ -48,6 +48,13 @@ std::wstring Message::charToWstring(const char *value) {
return st.str();
}
std::wstring Message::charUnsignedToWstring(const unsigned char value) {
//todo move?
std::wstringstream st;
st << value;
return st.str();
}
std::wstring Message::intToWstring(int value) {
//todo move?
std::wstringstream st;