Ignore:
Timestamp:
04/17/20 18:55:28 (4 years ago)
Author:
ymipsl
Message:

Some update on XIOS_COUPLING branch...

YM

File:
1 edited

Legend:

Unmodified
Added
Removed
  • XIOS/dev/dev_ym/XIOS_COUPLING/src/node/file.cpp

    r1869 r1870  
    13451345   CATCH_DUMP_ATTR 
    13461346 
     1347 
     1348   
     1349   /*! 
     1350    * Send file attribute, related variable and chield field tree to a given file server. 
     1351    * \param[in] client : the context client where to send file 
     1352    */ 
     1353   void CFile::sendFileToFileServer(CContextClient* client) 
     1354   TRY 
     1355   { 
     1356     if (sendFileToFileServer_done_.count(client)!=0) return ; 
     1357     else sendFileToFileServer_done_.insert(client) ; 
     1358      
     1359     StdString fileDefRoot("file_definition"); 
     1360     CFileGroup* cfgrpPtr = CFileGroup::get(fileDefRoot); 
     1361     cfgrpPtr->sendCreateChild(this->getId(), client); 
     1362     this->sendAllAttributesToServer(client); 
     1363     this->sendAddAllVariables(client); 
     1364     for(auto field : enabledFields) this->sendAddField(field->getId(), client); 
     1365   } 
     1366   CATCH_DUMP_ATTR 
    13471367   /*! 
    13481368   \brief Dispatch event received from client 
Note: See TracChangeset for help on using the changeset viewer.