Changeset 144 for osgVisual/include/util
- Timestamp:
- Nov 1, 2010, 6:24:56 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
osgVisual/include/util/visual_util.h
r88 r144 18 18 #include <string.h> 19 19 #include <iostream> 20 20 #include <libxml/parser.h> 21 #include <libxml/tree.h> 21 22 22 23 #include <osg/Node> … … 27 28 28 29 #include <osgViewer/Viewer> 30 31 #include <OpenThreads/ReentrantMutex> 32 33 #include <osgUtil/LineSegmentIntersector> 29 34 30 35 #ifdef FUNFUNCTIONS_ENABLED … … 36 41 #endif 37 42 38 #include <OpenThreads/ReentrantMutex> 39 40 #include <osgUtil/LineSegmentIntersector> 43 41 44 42 45 namespace osgVisual … … 216 219 */ 217 220 static bool setTransparentWindowBackground(osgViewer::Viewer* viewer_); 221 222 // Parses for the XML node of the specified module. The caller has to clean up if ret_value!=NULL, otherwise this function cleans up. 223 // nötige cleanup-Schritte: xmlFreeDoc(doc); xmlCleanupParser(); 224 static xmlNode* getModuleXMLConfig(std::string configFilename, std::string moduleName, xmlDoc*& doc); 225 226 private: 227 static xmlNode* checkXMLNodeChildrenForModule(xmlNode* node, std::string moduleName); 218 228 }; 219 229
Note: See TracChangeset
for help on using the changeset viewer.