Changeset 1165 in Sophya for trunk/SophyaPI/PIext/nomtmatvecadapter.cc
- Timestamp:
- Aug 30, 2000, 4:33:03 PM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaPI/PIext/nomtmatvecadapter.cc
r1086 r1165 45 45 /* --Methode-- */ 46 46 template <class T> 47 AnyDataObj* NOMAdapter_TMatrix<T>::GetCopyObj() 47 string NOMAdapter_TMatrix<T>::GetDataObjType() 48 { 49 string type = "TMatrix< "; 50 51 TVector<T>* v = dynamic_cast<TVector<T> *>(mMtx); 52 if (v != NULL) type = "TVector< "; 53 54 type += typeid(T).name(); 55 type += " > "; 56 return(type); 57 } 58 59 /* --Methode-- */ 60 template <class T> 61 AnyDataObj* NOMAdapter_TMatrix<T>::CloneDataObj() 48 62 { 49 63 if (mMtx == NULL) return(NULL);
Note:
See TracChangeset
for help on using the changeset viewer.