/DetectorDescription/Parser/src/DDLString.h
https://github.com/aivanov-cern/cmssw · C Header · 38 lines · 17 code · 7 blank · 14 comment · 0 complexity · 331f6b7c04a983d02868263377387287 MD5 · raw file
- #ifndef DDL_String_H
- #define DDL_String_H
- // -------------------------------------------------------------------------
- // Includes
- // -------------------------------------------------------------------------
- #include "DDXMLElement.h"
- #include "DetectorDescription/Core/interface/DDString.h"
- #include "DetectorDescription/Base/interface/DDTypes.h"
- #include <string>
- #include <vector>
- #include <map>
- /// DDLString handles String Elements.
- /** @class DDLString
- * @author Michael Case
- *
- * DDLString.h - description
- * -------------------
- * begin: Fri Nov 21 2003
- * email: case@ucdhep.ucdavis.edu
- *
- *
- */
- class DDLString : public DDXMLElement
- {
- public:
- DDLString( DDLElementRegistry* myreg );
- ~DDLString( void );
- void preProcessElement( const std::string& name, const std::string& nmspace, DDCompactView& cpv );
- void processElement( const std::string& name, const std::string& nmspace, DDCompactView& cpv );
- };
- #endif