Changeset 1214 in Sophya for trunk/SophyaPI
- Timestamp:
- Sep 30, 2000, 1:03:24 PM (25 years ago)
- Location:
- trunk/SophyaPI/PIext
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaPI/PIext/nomhistadapter.cc
r1207 r1214 43 43 { 44 44 HProf * hp = dynamic_cast<HProf *>(mHis); 45 if(hp==NULL) return("HProf "); 46 else return("Histo "); 45 if(hp) return("HProf "); else return("Histo "); 47 46 } 48 47 -
trunk/SophyaPI/PIext/nomimagadapter.cc
r1207 r1214 42 42 if (im) return ( new NOMAdapter_Image<T>(im) ); 43 43 return ( new NObjMgrAdapter(o) ); 44 } 45 46 /* --Methode-- */ 47 template <class T> 48 string NOMAdapter_Image<T>::GetDataObjType() 49 { 50 string type = "Image< "; 51 type += typeid(T).name(); 52 type += " > "; 53 return(type); 44 54 } 45 55 -
trunk/SophyaPI/PIext/nomimagadapter.h
r1207 r1214 24 24 25 25 virtual NObjMgrAdapter* Clone(AnyDataObj* o); 26 virtual string GetDataObjType(); 26 27 virtual AnyDataObj* CloneDataObj(); 27 28
Note:
See TracChangeset
for help on using the changeset viewer.