Ignore:
Timestamp:
04/21/20 16:46:20 (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/field.hpp

    r1870 r1871  
    227227        void connectToFileServer(CGarbageCollector& gc) ; 
    228228        void connectToModelInput(CGarbageCollector& gc) ; 
     229        void connectToFileWriter(CGarbageCollector& gc) ; 
     230        void connectToClientInput(CGarbageCollector& gc) ; 
     231        void connectToServerInput(CGarbageCollector& gc) ; 
     232        void connectToModelOutput(CGarbageCollector& gc); 
     233 
    229234        void computeGridIndexToFileServer(void) ; 
    230235 
     
    246251          
    247252         CFile* fileIn_ = nullptr ; //<! pointer to input related file 
    248          bool hasFileIn(void) { fileIn_==nullptr ? false : true ;} 
     253         bool hasFileIn(void) { return fileIn_==nullptr ? false : true ;} 
    249254         CFile* getFileIn(void) {return fileIn_;} 
    250255         void setFileIn(CFile* fileIn) { fileIn_ = fileIn ;} 
     
    252257 
    253258         CFile* fileOut_ = nullptr ; //<! pointer to output related file 
    254          bool hasFileOut(void) { fileOut_==nullptr ? false : true ;} 
     259         bool hasFileOut(void) { return fileOut_==nullptr ? false : true ;} 
    255260         CFile* getFileOut(void) {return fileOut_;} 
    256261         void setFileOut(CFile* fileOut) { fileOut_ = fileOut ;} 
     
    258263 
    259264         CCouplerIn* couplerIn_ = nullptr ; //<!pointer to input related coupler 
    260          bool hasCouplerIn(void) { couplerIn_==nullptr ? false : true ;} 
     265         bool hasCouplerIn(void) { return couplerIn_==nullptr ? false : true ;} 
    261266         CCouplerIn* getCouplerIn(void) {return couplerIn_;} 
    262267         void setCouplerIn(CCouplerIn* couplerIn) { couplerIn_ = couplerIn ;} 
     
    264269 
    265270         CCouplerOut* couplerOut_ = nullptr ; //<!pointer to output related coupler 
    266          bool hasCouplerOut(void) { couplerOut_==nullptr ? false : true ;} 
     271         bool hasCouplerOut(void) { return couplerOut_==nullptr ? false : true ;} 
    267272         CCouplerOut* getCouplerOut(void) {return couplerOut_;} 
    268273         void setCouplerOut(CCouplerOut* couplerOut) { couplerOut_ = couplerOut ;} 
Note: See TracChangeset for help on using the changeset viewer.