Ignore:
Timestamp:
01/22/21 12:00:29 (3 years ago)
Author:
yushan
Message:

Graph intermedia commit to a tmp branch

Location:
XIOS/dev/dev_trunk_graph/src/type
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • XIOS/dev/dev_trunk_graph/src/type/message.cpp

    r1158 r2019  
    99 
    1010   CMessage::CMessage(void) {} 
     11 
     12   CMessage::CMessage(const CMessage& msg)  
     13   { 
     14     for(auto type : msg.typeList) push(*type) ; 
     15   } 
     16 
    1117    
    1218   CMessage& CMessage::push(const CBaseType& type) 
  • XIOS/dev/dev_trunk_graph/src/type/message.hpp

    r591 r2019  
    1717     
    1818    CMessage(void) ; 
     19    CMessage(const CMessage& Msg)  ; 
     20     
    1921    list<CBaseType*> typeList ; 
    2022    virtual bool fromBuffer(CBufferIn& buffer) const; 
  • XIOS/dev/dev_trunk_graph/src/type/type_decl.cpp

    r1509 r2019  
    3333   
    3434  macro(string) 
     35  macro(char) 
     36  macro(short) 
    3537  macro(int) 
     38  macro(unsigned int) 
     39  macro(long) 
     40  macro(unsigned long) 
     41  macro(long long) 
     42  macro(unsigned long long) 
    3643  macro(double) 
    3744  macro(bool) 
    38   macro(StdSize) 
    3945  macro(CDate) 
    4046  macro(CDuration) 
  • XIOS/dev/dev_trunk_graph/src/type/type_util.hpp

    r1558 r2019  
    1515    class CFile; 
    1616    class CFileGroup; 
     17    class CCouplerIn; 
     18    class CCouplerInGroup; 
     19    class CCouplerOut; 
     20    class CCouplerOutGroup; 
    1721    class CContext; 
    1822    class CContextGroup; 
     
    7276  macro(unsigned int) 
    7377  macro(long) 
     78  macro(long long) 
    7479  macro(unsigned long) 
     80  macro(unsigned long long) 
    7581  macro(float) 
    7682  macro(double) 
     
    9399  macro(CFile) 
    94100  macro(CFileGroup) 
     101  macro(CCouplerIn) 
     102  macro(CCouplerInGroup) 
     103  macro(CCouplerOut) 
     104  macro(CCouplerOutGroup) 
    95105  macro(CContext) 
    96106  macro(CContextGroup) 
Note: See TracChangeset for help on using the changeset viewer.