Changeset 229 for cpp/frams/vm/classes
- Timestamp:
- 04/24/14 23:58:46 (11 years ago)
- Location:
- cpp/frams/vm/classes
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
cpp/frams/vm/classes/3dobject.cpp
r222 r229 191 191 } 192 192 193 Pt3D_Ext* Pt3D_Ext::fromObject(const ExtValue& v )194 { 195 return (Pt3D_Ext*)v.getObjectTarget(getStaticParam().getName() );193 Pt3D_Ext* Pt3D_Ext::fromObject(const ExtValue& v,bool warn) 194 { 195 return (Pt3D_Ext*)v.getObjectTarget(getStaticParam().getName(), warn); 196 196 } 197 197 -
cpp/frams/vm/classes/3dobject.h
r222 r229 39 39 static ExtObject makeDynamicObject(Pt3D_Ext* p); 40 40 static ExtObject makeDynamicObject(const Pt3D& p); 41 static Pt3D_Ext* fromObject(const ExtValue& v );41 static Pt3D_Ext* fromObject(const ExtValue& v,bool warn=true); 42 42 static Param& getStaticParam(); 43 43 static ParamEntry* getStaticParamtab();
Note: See TracChangeset
for help on using the changeset viewer.