CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_4_2_9_HLT1_bphpatch4/src/FWCore/Services/src/Sym.cc

Go to the documentation of this file.
00001 #include "Sym.h"
00002 
00003 #include <ostream>
00004 
00005 
00006 std::ostream& 
00007 operator<<(std::ostream& ost,const Sym& s)
00008 {
00009   ost << s.id_ << " " << s.addr_ << " " << s.name_;
00010   return ost;
00011 }
00012 
00013 int Sym::next_id_ = 1000000;