Ignore:
Timestamp:
11/13/14 15:09:28 (9 years ago)
Author:
mhnguyen
Message:

Seperating database of context on "client" side and "server" side

+) Add one more context in contex client in case of attached mode
+) Do some minor changements to make sure everything fine in case of attached mode
+) Replace buffer group with the new options

Test
+) On Curie
+) Connection mode: Attached and seperated
+) File mode: one and multiple
+) All tests passed

File:
1 edited

Legend:

Unmodified
Added
Removed
  • XIOS/trunk/src/object.cpp

    r501 r511  
    2020   { /* Ne rien faire de plus */ } 
    2121 
    22    const StdString & CObject::getId(void) const  
    23    {  
     22   const StdString & CObject::getId(void) const 
     23   { 
    2424      return (this->id); 
    2525   } 
    2626 
    27    bool CObject::hasId(void) const   
    28    {  
     27   const StdString& CObject::getIdServer() 
     28   { 
     29      return (this->id); 
     30   } 
     31 
     32   bool CObject::hasId(void) const 
     33   { 
    2934      return (this->IdDefined); 
    3035   } 
    3136 
    32    void CObject::resetId(void)  
    33    {  
     37   void CObject::resetId(void) 
     38   { 
    3439      this->IdDefined = false ; 
    3540   } 
    3641 
    3742   void CObject::setId(const StdString & id) 
    38    {  
     43   { 
    3944      this->id = id ; 
    4045      this->IdDefined = true ; 
     
    4954 
    5055   bool CObject::operator!=(const CObject & other) const 
    51    {  
     56   { 
    5257      return (!(*this == other)); 
    5358   } 
    5459*/ 
    5560   StdOStream & operator << (StdOStream & os, const CObject & object) 
    56    {  
     61   { 
    5762      os << object.toString(); 
    5863      return (os); 
Note: See TracChangeset for help on using the changeset viewer.