- Timestamp:
 - Nov 18, 2009, 3:39:28 PM (16 years ago)
 - File:
 - 
      
- 1 edited
 
- 
          
  sample/pingpong/PingPong.cpp (modified) (1 diff)
 
 
Legend:
- Unmodified
 - Added
 - Removed
 
- 
      
sample/pingpong/PingPong.cpp
r6954 r6956 58 58 string ip = config.read<string>("ariba.visual3d.ip"); 59 59 unsigned int port = config.read<unsigned int>("ariba.visual3d.port"); 60 unsigned int color = config.read<unsigned int>("ariba.visual3d.color"); 60 unsigned int color = config.exists("ariba.visual3d.color") ? 61 config.read<unsigned int>("ariba.visual3d.color") : 0; 61 62 ariba::utility::DddVis::instance().configure(ip, port, color); 62 63 }  
  Note:
 See   TracChangeset
 for help on using the changeset viewer.