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