ATLAS Offline Software
Loading...
Searching...
No Matches
VecStream.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_VECSTREAM_H
8#define COWTOOLS_VECSTREAM_H
9
10#include "CoWTools/StreamBase.h"
11#include <string>
12#include <vector>
13
14namespace CoWTools{
15 class CoWRecordStats;
16 class VecStream:public StreamBase{
17 public:
18 VecStream(std::vector<long> &out):m_out(out){}
20 };
21 virtual void putResults(const CoWRecordStats&);
22 private:
23 std::vector<long> &m_out;
24 };
25}
26
27#endif
VecStream(std::vector< long > &out)
Definition VecStream.h:18
virtual void putResults(const CoWRecordStats &)
Definition VecStream.cxx:8
std::vector< long > & m_out
Definition VecStream.h:23