Merge branch 'documentation' of http://github.com/fraillt/bitsery into documentation

This commit is contained in:
fraillt
2017-08-24 15:04:31 +03:00

View File

@@ -26,7 +26,6 @@ template <typename S, typename T, typename std::enable_if<std::is_same<T, Player
void serialize (S& s, T& o) {
...
}
```
Let's modify our [hello world](hello_world.md) example and add deserialization to it.
@@ -136,4 +135,4 @@ serialize(des, res); //des-> Deserializer, data-> Player
You have learned how to write *serialize* function for your type, that works with serialization and deserialization. You also learned that deserialization is very similar to serialization, but has runtime error checking.
In [next chapter](composition.md) you'll learn more serialization/deserialization functions and how to compose them efficiently to add default or custom serialization/deserialization behaviour.
In [next chapter](composition.md) you'll learn more serialization/deserialization functions and how to compose them efficiently to add default or custom serialization/deserialization behaviour.