Added bool serialization.

This commit is contained in:
vng 2013-08-07 22:17:29 +03:00
parent bf691db33a
commit 999d3901b7
2 changed files with 12 additions and 0 deletions

7
env/reader.hpp vendored
View file

@ -25,6 +25,13 @@ public:
s.resize(size);
Read(&s[0], size);
}
void Read(bool & b)
{
int8_t i;
Read(i);
b = (i != 0 ? true : false);
}
};

5
env/writer.hpp vendored
View file

@ -23,6 +23,11 @@ public:
Write(static_cast<uint32_t>(count));
Write(s.c_str(), count);
}
void Write(bool b)
{
Write(static_cast<int8_t>(b ? 1 : 0));
}
};