Changeset 464 for cpp/frams/util/extvalue.h
- Timestamp:
- 02/07/16 04:09:36 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
cpp/frams/util/extvalue.h
r384 r464 32 32 virtual ~DestrBase() {} 33 33 }; 34 35 enum SerializationFormat { NativeSerialization, JSONSerialization }; 34 36 35 37 /** … … 75 77 76 78 SString toString() const; 77 SString serialize_inner( ) const;78 SString serialize( ) const;79 SString serialize_inner(SerializationFormat format) const; 80 SString serialize(SerializationFormat format) const; 79 81 80 82 ExtObject(Param *p, void *o) :subtype(2), object(o), param(p){} … … 194 196 SString getString() const; 195 197 const SString* getStringPtr() const;//< @return pointer to the internal sstring object or NULL if the current type is not string 196 SString serialize( ) const;198 SString serialize(SerializationFormat format) const; 197 199 ExtObject getObject() const; 198 200 bool isNull() const { return (type == TUnknown) || ((type == TObj) && odata().isEmpty()); }
Note: See TracChangeset
for help on using the changeset viewer.