Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:04:09

0001 #ifndef DataFormats_FWLite_format_type_name_h
0002 #define DataFormats_FWLite_format_type_name_h
0003 // -*- C++ -*-
0004 //
0005 // Package:     FWLite
0006 // Class  :     format_type_name
0007 //
0008 /**\class format_type_name format_type_name.h DataFormats/FWLite/interface/format_type_name.h
0009 
0010  Description: functions used to format and unformat class names for conditions access
0011 
0012  Usage:
0013     Used internally 
0014 
0015 */
0016 //
0017 // Original Author:
0018 //         Created:  Thu Dec  3 16:52:43 CST 2009
0019 
0020 // system include files
0021 
0022 // user include files
0023 #include <string>
0024 
0025 // forward declarations
0026 
0027 namespace fwlite {
0028 
0029   ///given a C++ class name returned a mangled name
0030   std::string format_type_to_mangled(const std::string&);
0031 
0032   ///given a mangled name return the C++ class name
0033   std::string unformat_mangled_to_type(const std::string&);
0034 
0035 }  // namespace fwlite
0036 
0037 #endif