Added bool serialization.
This commit is contained in:
parent
bf691db33a
commit
999d3901b7
2 changed files with 12 additions and 0 deletions
7
env/reader.hpp
vendored
7
env/reader.hpp
vendored
|
@ -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
5
env/writer.hpp
vendored
|
@ -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));
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
|
|
Reference in a new issue