#include "GaudiKernel/DeclareFactoryEntries.h"#include "GaudiKernel/MsgStream.h"#include <xercesc/dom/DOMElement.hpp>#include <xercesc/dom/DOMDocument.hpp>#include <xercesc/dom/DOMNodeList.hpp>#include <xercesc/dom/DOMNode.hpp>#include <boost/regex.hpp>#include "XmlTools/IXmlSvc.h"#include <DetDesc/Material.h>#include <DetDesc/ILVolume.h>#include <DetDesc/LogVolumeException.h>#include "VisualizationSvc.h"Include dependency graph for VisualizationSvc.cpp:
Go to the source code of this file.
Namespaces | |
| namespace | xercesc |
Functions | |
| DECLARE_SERVICE_FACTORY (VisualizationSvc) | |
| const std::string | dom2Std (const XMLCh *aString) |
| const std::string dom2Std | ( | const XMLCh * | aString | ) |
Definition at line 35 of file VisualizationSvc.cpp.
00035 { 00036 char *cString = xercesc::XMLString::transcode(aString); 00037 std::string stdString; 00038 if (cString) { 00039 stdString = cString; 00040 xercesc::XMLString::release(&cString); 00041 } 00042 return stdString; 00043 }
1.4.7