Changeset 1199 in Sophya for trunk/SophyaPI/PIext


Ignore:
Timestamp:
Sep 22, 2000, 3:22:11 PM (25 years ago)
Author:
ercodmgr
Message:

compil avec PEIDA pour les modifs de l'interface adapteur - Reza 22/9/2000

Location:
trunk/SophyaPI/PIext
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/SophyaPI/PIext/nobjmgr.cc

    r1165 r1199  
    203203bool NamedObjMgr::SetVar(string const & key, string const & val)
    204204{
     205#ifdef SANS_EVOLPLANCK
     206  bool fg = true;
     207#else
    205208  bool fg = myVars->HasKey(key);
     209#endif
    206210  myVars->SetS(key, val);
    207211  return(fg);
     
    211215bool NamedObjMgr::HasVar(string const & key)
    212216{
     217#ifdef SANS_EVOLPLANCK
     218  return(false);
     219#else
    213220  return(myVars->HasKey(key));
     221#endif
    214222}
    215223
     
    217225bool NamedObjMgr::DeleteVar(string const & key)
    218226{
     227#ifdef SANS_EVOLPLANCK
     228  return(false);
     229#else
    219230  return(myVars->DeleteKey(key));
     231#endif
    220232}
    221233
  • trunk/SophyaPI/PIext/nomimagadapter.cc

    r1105 r1199  
    4242/* --Methode-- */
    4343template <class T>
    44 AnyDataObj* NOMAdapter_Image<T>::GetCopyObj()
     44AnyDataObj* NOMAdapter_Image<T>::CloneDataObj()
    4545{
    4646#ifdef SANS_EVOLPLANCK
  • trunk/SophyaPI/PIext/nomimagadapter.h

    r463 r1199  
    2323
    2424  virtual NObjMgrAdapter*       Clone(AnyDataObj* o);
    25   virtual AnyDataObj*           GetCopyObj();
     25  virtual AnyDataObj*           CloneDataObj();
    2626
    2727  //  virtual void                      ReadFits(string const & flnm);
Note: See TracChangeset for help on using the changeset viewer.