Changeset 59 for osgVisual/include/cluster
- Timestamp:
- May 30, 2010, 7:50:59 PM (14 years ago)
- Location:
- osgVisual/include/cluster
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
osgVisual/include/cluster/dataIO_cluster.h
r32 r59 38 38 public: 39 39 /** 40 * This enum defines the three modi of the cluster engine. 41 */ 42 enum clustermode {MASTER, SLAVE, STANDALONE}; 43 44 /** 40 45 * \brief Empty constructor. 41 46 * … … 54 59 * 55 60 */ 56 virtual void init( osg::ArgumentParser& arguments_, osgVisual::dataIO_transportContainer* sendContainer_, bool compressionEnabled_, bool asAscii_ ) = 0;61 virtual void init( osg::ArgumentParser& arguments_, clustermode clusterMode_, osgVisual::dataIO_transportContainer* sendContainer_, bool compressionEnabled_, bool asAscii_ ) = 0; 57 62 58 63 … … 109 114 virtual bool sendSwapCommand() = 0; 110 115 111 /**112 * This enum defines the three modi of the cluster engine.113 */114 enum clustermode {MASTER, SLAVE, STANDALONE};115 116 116 117 117 -
osgVisual/include/cluster/dataIO_clusterAsioTcpIostream.h
r58 r59 27 27 virtual ~dataIO_clusterAsioTcpIostream(void); 28 28 29 virtual void init( osg::ArgumentParser& arguments_, osgVisual::dataIO_transportContainer* sendContainer_, bool compressionEnabled_, bool asAscii_ );29 virtual void init( osg::ArgumentParser& arguments_, clustermode clusterMode_, osgVisual::dataIO_transportContainer* sendContainer_, bool compressionEnabled_, bool asAscii_ ); 30 30 virtual void shutdown(); 31 31 virtual bool sendTO_OBJvaluesToSlaves() ; -
osgVisual/include/cluster/dataIO_clusterDummy.h
r32 r59 38 38 virtual ~dataIO_clusterDummy(void); 39 39 40 void init( osg::ArgumentParser& arguments_, osgVisual::dataIO_transportContainer* sendContainer_, bool compressionEnabled_, bool asAscii_ );40 void init( osg::ArgumentParser& arguments_, clustermode clusterMode_, osgVisual::dataIO_transportContainer* sendContainer_, bool compressionEnabled_, bool asAscii_ ); 41 41 void shutdown(); 42 42 -
osgVisual/include/cluster/dataIO_clusterUDP.h
r57 r59 48 48 virtual ~dataIO_clusterUDP(void); 49 49 50 void init( osg::ArgumentParser& arguments_, osgVisual::dataIO_transportContainer* sendContainer_, bool compressionEnabled_, bool asAscii_ );50 void init( osg::ArgumentParser& arguments_, clustermode clusterMode_, osgVisual::dataIO_transportContainer* sendContainer_, bool compressionEnabled_, bool asAscii_ ); 51 51 void shutdown(); 52 52
Note: See TracChangeset
for help on using the changeset viewer.