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