[31] | 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 | |
---|
[57] | 17 | #include <dataIO_extLinkDummy.h> |
---|
[31] | 18 | |
---|
[57] | 19 | #include <visual_dataIO.h> // include in.cpp to avoid circular inclusion (visual_dataIO <-> extLinkDummy) |
---|
| 20 | |
---|
| 21 | |
---|
| 22 | using namespace osgVisual; |
---|
| 23 | |
---|
[132] | 24 | dataIO_extLinkDummy::dataIO_extLinkDummy(std::vector<dataIO_slot *>& dataSlots_) : dataIO_extLink(dataSlots_) |
---|
[31] | 25 | { |
---|
| 26 | OSG_NOTIFY( osg::ALWAYS ) << "extLinkDummy constructed" << std::endl; |
---|
| 27 | } |
---|
| 28 | |
---|
| 29 | dataIO_extLinkDummy::~dataIO_extLinkDummy(void) |
---|
| 30 | { |
---|
| 31 | OSG_NOTIFY( osg::ALWAYS ) << "extLinkDummy destroyed" << std::endl; |
---|
| 32 | } |
---|
| 33 | |
---|
[186] | 34 | bool dataIO_extLinkDummy::init(xmlNode* configurationNode) |
---|
[31] | 35 | { |
---|
| 36 | OSG_NOTIFY( osg::ALWAYS ) << "extLinkDummy init()" << std::endl; |
---|
[186] | 37 | return true; |
---|
[31] | 38 | } |
---|
| 39 | |
---|
[186] | 40 | bool dataIO_extLinkDummy::processXMLConfiguration(xmlNode* extLinkConfig_) |
---|
| 41 | { |
---|
| 42 | OSG_NOTIFY( osg::ALWAYS ) << "extLinkDummy processXMLConfiguration()" << std::endl; |
---|
| 43 | return true; |
---|
| 44 | } |
---|
| 45 | |
---|
[31] | 46 | void dataIO_extLinkDummy::shutdown() |
---|
| 47 | { |
---|
| 48 | OSG_NOTIFY( osg::ALWAYS ) << "extLinkDummy shutdown()" << std::endl; |
---|
| 49 | } |
---|
| 50 | |
---|
| 51 | bool dataIO_extLinkDummy::readTO_OBJvalues() |
---|
| 52 | { |
---|
| 53 | OSG_NOTIFY( osg::ALWAYS ) << "extLinkDummy readTO_OBJvalues()" << std::endl; |
---|
| 54 | |
---|
| 55 | return true; |
---|
| 56 | } |
---|
| 57 | |
---|
| 58 | bool dataIO_extLinkDummy::writebackFROM_OBJvalues() |
---|
| 59 | { |
---|
| 60 | OSG_NOTIFY( osg::ALWAYS ) << "extLinkDummy writebackFROM_OBJvalues()" << std::endl; |
---|
| 61 | |
---|
| 62 | return true; |
---|
| 63 | } |
---|
| 64 | |
---|
| 65 | void dataIO_extLinkDummy::provideSlots() |
---|
| 66 | { |
---|
| 67 | OSG_NOTIFY( osg::ALWAYS ) << "extLinkDummy provideSlots()" << std::endl; |
---|
| 68 | } |
---|