Go to the documentation of this file.00001 #ifndef FWCore_MessageService_ELset_h
00002 #define FWCore_MessageService_ELset_h
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018 #include "FWCore/MessageLogger/interface/ELstring.h"
00019
00020 #include <set>
00021
00022
00023 namespace edm {
00024 namespace service {
00025
00026
00027 struct ELsetS {
00028 std::string s;
00029 ELsetS (const std::string & ss) : s(ss) {}
00030 bool operator< (const ELsetS & t) const { return (s<t.s); }
00031 };
00032
00033 typedef std::set<ELsetS> ELset_string;
00034
00035
00036
00037
00038 }
00039 }
00040
00041
00042 #endif // FWCore_MessageService_ELset_h