blob: 8bbfc8c38b8c94ce971ae88fc9609ead6d750812 [file] [log] [blame]
#ifndef QPID_LOG_OSTREAMOUTPUT_H
#define QPID_LOG_OSTREAMOUTPUT_H
/*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*/
#include "Logger.h"
#include <boost/scoped_ptr.hpp>
#include <fstream>
#include <ostream>
namespace qpid {
namespace log {
/**
* OstreamOutput is a reusable logging sink that directs logging to a C++
* ostream.
*/
class OstreamOutput : public qpid::log::Logger::Output {
public:
OstreamOutput(std::ostream& o);
OstreamOutput(const std::string& file);
virtual void log(const Statement&, const std::string& m);
private:
std::ostream* out;
boost::scoped_ptr<std::ostream> mine;
};
}} // namespace qpid::log
#endif /*!QPID_LOG_OSTREAMOUTPUT_H*/