forked from organicmaps/organicmaps
Optimization step 'generate_features': Added WritePOD, ReadPOD.
This commit is contained in:
parent
3fcc3d57c5
commit
26701e52d2
1 changed files with 16 additions and 0 deletions
|
@ -25,6 +25,22 @@ namespace rw
|
|||
i = ReadVarUint<uint32_t>(src);
|
||||
}
|
||||
|
||||
template <class TSink, class T>
|
||||
void WritePOD(TSink & sink, T const & value)
|
||||
{
|
||||
static_assert(std::is_trivially_copyable<T>::value, "");
|
||||
|
||||
sink.Write(&value, sizeof(T));
|
||||
}
|
||||
|
||||
template <class TSource, class T>
|
||||
void ReadPOD(TSource & src, T & value)
|
||||
{
|
||||
static_assert(std::is_trivially_copyable<T>::value, "");
|
||||
|
||||
src.Read(&value, sizeof(T));
|
||||
}
|
||||
|
||||
template <class TSink>
|
||||
void Write(TSink & sink, std::string const & s)
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue