CMS 3D CMS Logo

ELstring.h
Go to the documentation of this file.
1 #ifndef MessageLogger_ELstring_h
2 #define MessageLogger_ELstring_h
3 
4 // ----------------------------------------------------------------------
5 //
6 // ELstring.h Provides a string class with the semantics of std::string.
7 // Customizers may substitute for this class to provide either
8 // a string with a different allocator, or whatever else.
9 //
10 // The elements of string semantics which are relied upon are listed
11 // in ELstring.semantics
12 //
13 // ----------------------------------------------------------------------
14 
15 #include <string>
16 
17 namespace edm {
18 
19  // ----------------------------------------------------------------------
20 
22 
23  bool eq_nocase(const ELstring& s1, const char s2[]);
24 
25  bool eq(const ELstring& s1, const ELstring s2);
26 
27  // ----------------------------------------------------------------------
28 
29 } // end of namespace edm
30 
31 #endif // MessageLogger_ELstring_h
bool eq(const ELstring &s1, const ELstring s2)
Definition: ELstring.cc:39
bool eq_nocase(const ELstring &s1, const char s2[])
Definition: ELstring.cc:21
HLT enums.
std::string ELstring
Definition: ELstring.h:21