Changeset 171 for cpp/frams/vm/classes/collectionobj.h
- Timestamp:
- 03/13/14 01:00:33 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
cpp/frams/vm/classes/collectionobj.h
r121 r171 44 44 ExtObject makeObject() {return ExtObject(&par,this);} 45 45 46 static VectorObject* fromObject(const ExtObject& o );46 static VectorObject* fromObject(const ExtObject& o, bool warn=true); 47 47 }; 48 48 … … 74 74 static void p_new(void*,ExtValue*args,ExtValue*ret) 75 75 {ret->setObject(ExtObject(&par,new DictionaryObject));} 76 static DictionaryObject* fromObject(const ExtObject& v );76 static DictionaryObject* fromObject(const ExtObject& v, bool warn=true); 77 77 ExtObject makeObject() {return ExtObject(&par,this);} 78 78 };
Note: See TracChangeset
for help on using the changeset viewer.