Changeset 152 for osgVisual/include
- Timestamp:
- Nov 9, 2010, 10:56:41 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
osgVisual/include/util/visual_util.h
r151 r152 239 239 * @param moduleName : Module name to search for. 240 240 * @param doc : xmlDoc to use. Must be created outside that the caller can clean it up. 241 * @param disabled : Contains after return if the module was disabled. Only true if valid configuration and definitely disabled. 241 242 * @return : NULL on error, otherwise pointer to the xmlNode of the queried module. 242 243 */ 243 static xmlNode* getModuleXMLConfig(std::string configFilename, std::string moduleName, xmlDoc*& doc );244 static xmlNode* getModuleXMLConfig(std::string configFilename, std::string moduleName, xmlDoc*& doc, bool& disabled); 244 245 245 246 /** … … 260 261 * @param node : Node to search in 261 262 * @param moduleName :Module name to search for. 263 * @param disabled : Contains after return if the module was disabled. Only true if valid configuration and definitely disabled. 262 264 * @return : NULL if the module configuration was not found, otherwise pointer to the XML Node with the configuration for the specified module. 263 265 */ 264 static xmlNode* checkXMLNodeChildrenForModule(xmlNode* node, std::string moduleName );266 static xmlNode* checkXMLNodeChildrenForModule(xmlNode* node, std::string moduleName, bool& disabled); 265 267 266 268 /**
Note: See TracChangeset
for help on using the changeset viewer.