Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
May 15, 2006, 2:49:23 PM (18 years ago)
Author:
rennerc
Message:

added some output so synchronizeable to find strange bug. did not help :(

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/network/src/subprojects/network/simple_sync.cc

    r7614 r7617  
    2828 *  default constructor
    2929 */
    30 SimpleSync::SimpleSync(const char* name)
    31   : Synchronizeable()
     30SimpleSync::SimpleSync( std::string name )
    3231{
    3332  setName( name );
    3433  in = 0;
    3534  out = 1;
    36   id = registerVarId( new SynchronizeableInt( &in, &out, "var" ) );
     35  id = this->registerVarId( new SynchronizeableInt( &in, &out, "var", PERMISSION_ALL ) );
    3736}
    3837
Note: See TracChangeset for help on using the changeset viewer.