Changeset 1199 in Sophya for trunk/SophyaPI/PIext
- Timestamp:
- Sep 22, 2000, 3:22:11 PM (25 years ago)
- Location:
- trunk/SophyaPI/PIext
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaPI/PIext/nobjmgr.cc
r1165 r1199 203 203 bool NamedObjMgr::SetVar(string const & key, string const & val) 204 204 { 205 #ifdef SANS_EVOLPLANCK 206 bool fg = true; 207 #else 205 208 bool fg = myVars->HasKey(key); 209 #endif 206 210 myVars->SetS(key, val); 207 211 return(fg); … … 211 215 bool NamedObjMgr::HasVar(string const & key) 212 216 { 217 #ifdef SANS_EVOLPLANCK 218 return(false); 219 #else 213 220 return(myVars->HasKey(key)); 221 #endif 214 222 } 215 223 … … 217 225 bool NamedObjMgr::DeleteVar(string const & key) 218 226 { 227 #ifdef SANS_EVOLPLANCK 228 return(false); 229 #else 219 230 return(myVars->DeleteKey(key)); 231 #endif 220 232 } 221 233 -
trunk/SophyaPI/PIext/nomimagadapter.cc
r1105 r1199 42 42 /* --Methode-- */ 43 43 template <class T> 44 AnyDataObj* NOMAdapter_Image<T>:: GetCopyObj()44 AnyDataObj* NOMAdapter_Image<T>::CloneDataObj() 45 45 { 46 46 #ifdef SANS_EVOLPLANCK -
trunk/SophyaPI/PIext/nomimagadapter.h
r463 r1199 23 23 24 24 virtual NObjMgrAdapter* Clone(AnyDataObj* o); 25 virtual AnyDataObj* GetCopyObj();25 virtual AnyDataObj* CloneDataObj(); 26 26 27 27 // virtual void ReadFits(string const & flnm);
Note:
See TracChangeset
for help on using the changeset viewer.