update comment, to correctly specify number of methods injected

This commit is contained in:
zancas 2020-01-23 19:23:44 -07:00
parent b8ca7131c7
commit d2c24e47ba
No known key found for this signature in database
GPG Key ID: CCF0F40AA11A8DBE
1 changed files with 4 additions and 4 deletions

View File

@ -196,10 +196,10 @@ enum
#define READWRITEMANY(...) (::SerReadWriteMany(s, ser_action, __VA_ARGS__))
/**
* Implement three methods for serializable objects. These are actually wrappers over
* "SerializationOp" template, which implements the body of each class' serialization
* code. Adding "ADD_SERIALIZE_METHODS" in the body of the class causes these wrappers to be
* added as members.
* Implement two methods, "Serialize" and "Unserialize", for serializable objects. These are
* actually wrappers over the "SerializationOp" template method, which implements the body of each
* classes' serialization code. Adding "ADD_SERIALIZE_METHODS" in the body of the class causes these
* wrapper methods to be added as members.
*/
#define ADD_SERIALIZE_METHODS \
template<typename Stream> \