Changeset 186 for osgVisual/trunk/include/extLink
- Timestamp:
- Jan 8, 2011, 8:13:43 PM (14 years ago)
- Location:
- osgVisual/trunk/include/extLink
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
osgVisual/trunk/include/extLink/dataIO_extLink.h
r118 r186 19 19 #include <osg/Node> 20 20 #include <dataIO_slot.h> 21 22 // XML Parser 23 #include <stdio.h> 24 #include <libxml/parser.h> 25 #include <libxml/tree.h> 21 26 22 27 … … 54 59 * 55 60 */ 56 virtual void init() = 0;61 virtual bool init( xmlNode* configurationNode) = 0; 57 62 63 /** 64 * \brief Pure virtual function for XML configuration. Must be implemented in derived class. 65 * 66 */ 67 virtual bool processXMLConfiguration(xmlNode* extLinkConfig_) = 0; 68 69 /** 70 * \brief Pure virtual function for shutdown. Must be implemented in derived class. 71 * 72 */ 58 73 virtual void shutdown() = 0; 59 74 -
osgVisual/trunk/include/extLink/dataIO_extLinkDummy.h
r132 r186 37 37 virtual ~dataIO_extLinkDummy(void); 38 38 39 void init(); 39 bool processXMLConfiguration(xmlNode* extLinkConfig_); 40 bool init(xmlNode* configurationNode); 40 41 void shutdown(); 41 42 -
osgVisual/trunk/include/extLink/dataIO_extLinkVCL.h
r180 r186 79 79 virtual ~dataIO_extLinkVCL(void); 80 80 81 void init(); 81 bool init(xmlNode* configurationNode); 82 bool processXMLConfiguration(xmlNode* extLinkConfig_); 82 83 void shutdown(); 83 84
Note: See TracChangeset
for help on using the changeset viewer.