ATLAS Offline Software
StreamBase.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_STREAMBASE_H
8 #define COWTOOLS_STREAMBASE_H
9 
10 namespace CoWTools{
11  class CoWRecordStats;
12  class StreamBase{
13  public:
15  virtual ~StreamBase(){};
16  virtual void putResults(const CoWRecordStats&)=0;
17  };
18 
19 }
20 #endif
CoWTools::StreamBase::~StreamBase
virtual ~StreamBase()
Definition: StreamBase.h:15
CoWTools::StreamBase::putResults
virtual void putResults(const CoWRecordStats &)=0
CoWTools::StreamBase
Definition: StreamBase.h:12
CoWTools::CoWRecordStats
Definition: CoWRecordStats.h:13
CoWTools
Definition: CoWLibrary.h:15
CoWTools::StreamBase::StreamBase
StreamBase()
Definition: StreamBase.h:14