Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Mar 18, 2009, 9:00:48 PM (16 years ago)
Author:
rgrieder
Message:

Added static function to SynchronisableVariableBase to avoid including Core.h in SynchronisableVariable.h

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/gui/src/network/synchronisable/SynchronisableVariable.cc

    r2710 r2798  
    3030#include <cstring>
    3131#include "util/Math.h"
     32#include "core/Core.h"
    3233
    3334
     
    3637uint8_t SynchronisableVariableBase::state_ = 0;
    3738
     39/*static*/ void SynchronisableVariableBase::setState()
     40{
     41  if ( state_ == 0x0 )
     42  {
     43    state_ = Core::isMaster() ? 0x1 : 0x2;  // set the appropriate mode here
     44  }
     45}
    3846
    3947
Note: See TracChangeset for help on using the changeset viewer.