Ignore:
Timestamp:
09/26/11 14:19:55 (13 years ago)
Author:
hozdoba
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • XMLIO_V2/dev/dev_rv/src/xmlio/fortran/icgrid.cpp

    r271 r285  
    109109   } 
    110110 
     111   // -------------------- Vérification des identifiants ----------------------- 
     112 
     113   void xios_grid_valid_id (bool * _ret, const char * _id, int _id_len) 
     114   { 
     115      std::string id; 
     116      if (!cstr2string(_id, _id_len, id)) return; 
     117 
     118      *_ret = xmlioserver::CObjectFactory::HasObject<xmlioserver::tree::CGrid>(id); 
     119   } 
     120 
     121   void xios_gridgroup_valid_id (bool * _ret, const char * _id, int _id_len) 
     122   { 
     123      std::string id; 
     124      if (!cstr2string(_id, _id_len, id)) return; 
     125 
     126      *_ret = xmlioserver::CObjectFactory::HasObject<xmlioserver::tree::CGridGroup>(id); 
     127   } 
    111128} // extern "C" 
Note: See TracChangeset for help on using the changeset viewer.