openMSX
|
Store serialization-version number of a class. More...
#include <serialize_meta.hh>
Static Public Attributes | |
static constexpr unsigned | value = 1 |
Store serialization-version number of a class.
Classes are individually versioned. Use the SERIALIZE_CLASS_VERSION macro below as a convenient way to set the version of a class.
The initial (=default) version is 1. When the layout of a class changes in an incompatible way, you should increase the version number. But remember: to be able to load older version the (de)serialize code for the older version(s) must be kept.
Version number 0 is special. It means the layout for this class will NEVER change. This can be a bit more efficient because the version number must not be stored in the stream. Though be careful to only use version 0 for VERY stable classes, std::pair is a good example of a stable class.
Definition at line 385 of file serialize_meta.hh.
|
staticconstexpr |
Definition at line 387 of file serialize_meta.hh.