Ignore:
Timestamp:
06/18/18 20:32:55 (6 years ago)
Author:
yushan
Message:

branch_openmp merged with trunk r1544

File:
1 edited

Legend:

Unmodified
Added
Removed
  • XIOS/dev/branch_openmp/src/node/file.hpp

    r1460 r1545  
    1313#include "attribute_enum_impl.hpp" 
    1414#include "context_client.hpp" 
    15 //#include "mpi.hpp" 
     15 
    1616 
    1717namespace xios { 
     
    7272         /// Accesseurs /// 
    7373         const StdString getFileOutputName(void) const; 
    74          boost::shared_ptr<CDataOutput> getDataOutput(void) const; 
    75          boost::shared_ptr<CDataInput> getDataInput(void) const; 
     74         std::shared_ptr<CDataOutput> getDataOutput(void) const; 
     75         std::shared_ptr<CDataInput> getDataInput(void) const; 
    7676         CFieldGroup* getVirtualFieldGroup(void) const; 
    7777         CVariableGroup* getVirtualVariableGroup(void) const; 
     
    119119         void checkGridOfEnabledFields(); 
    120120         void sendGridOfEnabledFields(); 
    121          void sendGridComponentOfEnabledFields();    
     121         void sendGridComponentOfEnabledFields(); 
     122 
     123         void sortEnabledFieldsForUgrid(); 
    122124 
    123125         // Add component into file 
     
    185187         CFieldGroup* vFieldGroup; 
    186188         CVariableGroup* vVariableGroup; 
    187          boost::shared_ptr<CDataOutput> data_out; 
    188          boost::shared_ptr<CDataInput> data_in; 
     189         std::shared_ptr<CDataOutput> data_out; 
     190         std::shared_ptr<CDataInput> data_in; 
    189191         std::vector<CField*> enabledFields; 
    190192 
Note: See TracChangeset for help on using the changeset viewer.