// $Id: RlogMsg.cpp 20 2013-08-10 16:42:54Z mueller $ // // Copyright 2013- by Walter F.J. Mueller // // This program is free software; you may redistribute and/or modify it under // the terms of the GNU General Public License as published by the Free // Software Foundation, either version 2, or at your option any later version. // // This program is distributed in the hope that it will be useful, but // WITHOUT ANY WARRANTY, without even the implied warranty of MERCHANTABILITY // or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License // for complete details. // // Imported Rev 490/490 1.0 from Retro -> CbmNet // --------------------------------------------------------------------------- /*! \file \version $Id: RlogMsg.cpp 20 2013-08-10 16:42:54Z mueller $ \brief Implemenation of RlogMsg. */ #include "boost/thread/locks.hpp" #include "RlogFile.hpp" #include "RlogMsg.hpp" using namespace std; /*! \class CbmNet::RlogMsg \brief FIXME_docs */ // all method definitions in namespace CbmNet namespace CbmNet { //------------------------------------------+----------------------------------- //! Default constructor RlogMsg::RlogMsg(char tag) : fStream(), fLfile(0), fTag(tag) {} //------------------------------------------+----------------------------------- //! FIXME_docs RlogMsg::RlogMsg(RlogFile& lfile, char tag) : fStream(), fLfile(&lfile), fTag(tag) {} //------------------------------------------+----------------------------------- //! Destructor RlogMsg::~RlogMsg() { if (fLfile) *fLfile << *this; } } // end namespace CbmNet