void Boolean::save(PersistentStore &store) const { store.saveIntValue( value ? 1 : 0); }
void Integer::save(PersistentStore &store) const { store.saveIntValue(integer); }