Ignore:
Timestamp:
11/16/15 16:21:45 (8 years ago)
Author:
rlacroix
Message:

Domain: Remove the domain_src attribute.

It was added but was never used.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • XIOS/trunk/src/node/domain.cpp

    r785 r789  
    3535      , isClientAfterTransformationChecked(false), hasLonLat(false) 
    3636      , lonvalue_client(), latvalue_client(), bounds_lon_client(), bounds_lat_client() 
    37       , srcObject_(0), isRedistributed_(false) 
     37      , isRedistributed_(false) 
    3838   { /* Ne rien faire de plus */ } 
    3939 
     
    4545      , isClientAfterTransformationChecked(false), hasLonLat(false) 
    4646      , lonvalue_client(), latvalue_client(), bounds_lon_client(), bounds_lat_client() 
    47       , srcObject_(0), isRedistributed_(false) 
     47      , isRedistributed_(false) 
    4848   { /* Ne rien faire de plus */ } 
    4949 
     
    19251925  } 
    19261926 
    1927   void CDomain::solveSrcInheritance() 
    1928   { 
    1929     if (!domain_src.isEmpty()) 
    1930     { 
    1931        if (!CDomain::has(this->domain_src.getValue()))                                   \ 
    1932           ERROR("CDomain::solveSrcInheritance()",                                \ 
    1933              << "[ src_name = " << this->domain_src.getValue() << "]"                 \ 
    1934              << " invalid domain name !"); 
    1935  
    1936        srcObject_ = CDomain::get(this->domain_src.getValue()); 
    1937     } 
    1938   } 
    1939  
    1940   CDomain* CDomain::getDomainSrc() 
    1941   { 
    1942     return srcObject_; 
    1943   } 
    1944  
    19451927  /*! 
    19461928    Parse children nodes of a domain in xml file. 
Note: See TracChangeset for help on using the changeset viewer.