// $Id: RlogMsg.hpp 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.hpp 20 2013-08-10 16:42:54Z mueller $ \brief Declaration of class RlogMsg. */ #ifndef included_CbmNet_RlogMsg #define included_CbmNet_RlogMsg 1 #include #include "boost/utility.hpp" namespace CbmNet { class RlogFile; // forw decl to avoid circular incl class RlogMsg : private boost::noncopyable { public: explicit RlogMsg(char tag = 0); RlogMsg(RlogFile& lfile, char tag = 0); ~RlogMsg(); void SetTag(char tag); void SetString(const std::string& str); char Tag() const; std::string String() const; std::ostream& operator()(); protected: std::stringstream fStream; //!< string stream RlogFile* fLfile; char fTag; }; template std::ostream& operator<<(RlogMsg& lmsg, const T& val); } // end namespace CbmNet #include "RlogMsg.ipp" #endif