ATLAS Offline Software
Loading...
Searching...
No Matches
MStrStream.h
Go to the documentation of this file.
1// --*- c++ -*--
2
3/*
4 Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
5*/
6
7#ifndef COWTOOLS_MSTRSTREAM_H
8#define COWTOOLS_MSTRSTREAM_H
10#include <string>
11#include "GaudiKernel/MsgStream.h"
12
13namespace CoWTools{
14 class CoWRecordStats;
15 class MStrStream:public StreamBase{
16 public:
17 MStrStream(MsgStream &out):m_out(out){}
19 virtual void putResults(const CoWRecordStats&);
20 private:
21 MsgStream &m_out;
22 };
23}
24
25#endif
MsgStream & m_out
Definition MStrStream.h:21
virtual void putResults(const CoWRecordStats &)
Definition MStrStream.cxx:8
MStrStream(MsgStream &out)
Definition MStrStream.h:17