Changeset 1199 in Sophya for trunk/SophyaPI/PIext/nobjmgr.cc
- Timestamp:
- Sep 22, 2000, 3:22:11 PM (25 years ago)
- File:
-
- 1 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
Note:
See TracChangeset
for help on using the changeset viewer.