Changeset 464 for cpp/frams/vm/classes/collectionobj.cpp
- Timestamp:
- 02/07/16 04:09:36 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
cpp/frams/vm/classes/collectionobj.cpp
r453 r464 154 154 } 155 155 156 SString VectorObject::serialize( ) const156 SString VectorObject::serialize(SerializationFormat format) const 157 157 { 158 158 SString out="["; … … 163 163 if (i) out+=","; 164 164 if (v) 165 out+=v->serialize( );165 out+=v->serialize(format); 166 166 else 167 167 out+="null"; … … 413 413 } 414 414 415 SString DictionaryObject::serialize( ) const415 SString DictionaryObject::serialize(SerializationFormat format) const 416 416 { 417 417 SString out="{"; … … 424 424 out+="\":"; 425 425 if (it->value!=NULL) 426 out+=((ExtValue*)it->value)->serialize( );426 out+=((ExtValue*)it->value)->serialize(format); 427 427 else 428 428 out+="null";
Note: See TracChangeset
for help on using the changeset viewer.