Make bitvectors serializable.

This commit is contained in:
Matthias Vallentin 2013-05-28 20:58:01 -07:00
parent 4d275522c7
commit 9e32eaad6d
3 changed files with 67 additions and 5 deletions

View file

@ -49,6 +49,7 @@ SERIAL_IS(STATE_ACCESS, 0x1100)
SERIAL_IS_BO(CASE, 0x1200)
SERIAL_IS(LOCATION, 0x1300)
SERIAL_IS(RE_MATCHER, 0x1400)
SERIAL_IS(BITVECTOR, 0x1500)
// These are the externally visible types.
const SerialType SER_NONE = 0;
@ -202,5 +203,6 @@ SERIAL_CONST2(STATE_ACCESS)
SERIAL_CONST2(CASE)
SERIAL_CONST2(LOCATION)
SERIAL_CONST2(RE_MATCHER)
SERIAL_CONST2(BITVECTOR)
#endif