CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
ELstring.h
Go to the documentation of this file.
1 #ifndef MessageLogger_ELstring_h
2 #define MessageLogger_ELstring_h
3 
4 
5 // ----------------------------------------------------------------------
6 //
7 // ELstring.h Provides a string class with the semantics of std::string.
8 // Customizers may substitute for this class to provide either
9 // a string with a different allocator, or whatever else.
10 //
11 // The elements of string semantics which are relied upon are listed
12 // in ELstring.semantics
13 //
14 // ----------------------------------------------------------------------
15 
16 
17 #include <string>
18 
19 
20 namespace edm {
21 
22 
23 // ----------------------------------------------------------------------
24 
25 
27 
28 bool eq_nocase( const ELstring & s1, const char s2[] );
29 
30 bool eq( const ELstring & s1, const ELstring s2 );
31 
32 
33 // ----------------------------------------------------------------------
34 
35 
36 } // end of namespace edm
37 
38 
39 #endif // MessageLogger_ELstring_h
tuple s2
Definition: indexGen.py:106
bool eq(const ELstring &s1, const ELstring s2)
Definition: ELstring.cc:42
bool eq_nocase(const ELstring &s1, const char s2[])
Definition: ELstring.cc:24
std::string ELstring
Definition: ELstring.h:26