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/icfile.cpp

    r276 r285  
    129129      *_ret = xmlioserver::CObjectFactory::GetObject<xmlioserver::tree::CFileGroup>(id).get(); 
    130130   } 
    131     
     131 
     132   // -------------------- Vérification des identifiants ----------------------- 
     133 
     134   void xios_file_valid_id (bool * _ret, const char * _id, int _id_len) 
     135   { 
     136      std::string id; 
     137      if (!cstr2string(_id, _id_len, id)) return; 
     138 
     139      *_ret = xmlioserver::CObjectFactory::HasObject<xmlioserver::tree::CFile>(id); 
     140   } 
     141 
     142   void xios_filegroup_valid_id (bool * _ret, const char * _id, int _id_len) 
     143   { 
     144      std::string id; 
     145      if (!cstr2string(_id, _id_len, id)) return; 
     146 
     147      *_ret = xmlioserver::CObjectFactory::HasObject<xmlioserver::tree::CFileGroup>(id); 
     148   } 
    132149} // extern "C" 
Note: See TracChangeset for help on using the changeset viewer.