source: osgVisual/src/cluster/dataIO_clusterAsioTcpIostream.cpp @ 58

Last change on this file since 58 was 58, checked in by Torben Dannhauer, 14 years ago

added support cluster implementation via Boost ASIO TCP iostreams.

Status: Skeleton, ready to implement.

Minor: changed Silverlining default clouds.

File size: 1.8 KB
Line 
1/* -*-c++-*- osgVisual - Copyright (C) 2009-2010 Torben Dannhauer
2 *
3 * This library is based on OpenSceneGraph, open source and may be redistributed and/or modified under
4 * the terms of the OpenSceneGraph Public License (OSGPL) version 0.0 or
5 * (at your option) any later version.  The full license is in LICENSE file
6 * included with this distribution, and on the openscenegraph.org website.
7 *
8 * osgVisual requires for some proprietary modules a license from the correspondig manufacturer.
9 * You have to aquire licenses for all used proprietary modules.
10 *
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 * OpenSceneGraph Public License for more details.
15*/
16
17#include "..\..\include\cluster\dataIO_clusterAsioTcpIostream.h"
18
19using namespace osgVisual;
20
21dataIO_clusterAsioTcpIostream::dataIO_clusterAsioTcpIostream()
22{
23}
24
25dataIO_clusterAsioTcpIostream::~dataIO_clusterAsioTcpIostream(void)
26{
27}
28
29void dataIO_clusterAsioTcpIostream::init( osg::ArgumentParser& arguments_, osgVisual::dataIO_transportContainer* sendContainer_, bool compressionEnabled_, bool asAscii_ )
30{
31
32}
33
34void dataIO_clusterAsioTcpIostream::shutdown()
35{
36
37}
38
39bool dataIO_clusterAsioTcpIostream::sendTO_OBJvaluesToSlaves()
40{
41
42        return true;
43}
44
45bool dataIO_clusterAsioTcpIostream::readTO_OBJvaluesFromMaster()
46{
47
48        return true;
49}
50
51void dataIO_clusterAsioTcpIostream::reportAsReadyToSwap()
52{
53
54}
55
56bool dataIO_clusterAsioTcpIostream::waitForSwap()
57{
58
59        return true;
60}
61
62bool dataIO_clusterAsioTcpIostream::waitForAllReadyToSwap()
63{
64
65        return true;
66}
67
68bool dataIO_clusterAsioTcpIostream::sendSwapCommand()
69{
70
71        return true;
72}
Note: See TracBrowser for help on using the repository browser.