CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_3_1/src/EventFilter/StorageManager/src/XHTMLMonitor.cc

Go to the documentation of this file.
00001 // $Id: XHTMLMonitor.cc,v 1.4 2011/03/07 15:31:32 mommsen Exp $
00003 
00004 #include "EventFilter/StorageManager/interface/XHTMLMonitor.h"
00005 
00006 #include <xercesc/util/PlatformUtils.hpp>
00007 
00008 using namespace xercesc;
00009 
00010 boost::mutex stor::XHTMLMonitor::xhtmlMakerMutex_;
00011 
00012 stor::XHTMLMonitor::XHTMLMonitor()
00013 {
00014   xhtmlMakerMutex_.lock();
00015   XMLPlatformUtils::Initialize();
00016 }
00017 
00018 stor::XHTMLMonitor::~XHTMLMonitor()
00019 {
00020   XMLPlatformUtils::Terminate();
00021   xhtmlMakerMutex_.unlock();
00022 }
00023 
00024