Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:05:24

0001 #ifndef DD_DDSPLIT_H
0002 #define DD_DDSPLIT_H
0003 
0004 #include <string>
0005 #include <utility>
0006 
0007 //! split into (name,namespace), separator = ':'
0008 std::pair<std::string, std::string> DDSplit(const std::string& n);
0009 
0010 #endif