-
Eoin Clerkin authored
Decision to not use doxygen for licence headers. Removes doxygen formatting and file tag.
Eoin Clerkin authoredDecision to not use doxygen for licence headers. Removes doxygen formatting and file tag.
CbmDevNullSink.h 598 B
/* Copyright (C) 2017-2018 GSI Helmholtzzentrum fuer Schwerionenforschung, Darmstadt
SPDX-License-Identifier: GPL-3.0-only
Authors: Florian Uhlig [committer] */
/**
* CbmDevNullSink.h
*
* @since 2017-11-17
* @author F. Uhlig
*/
#ifndef CBMDEVNULLSINK_H_
#define CBMDEVNULLSINK_H_
#include "FairMQDevice.h"
class CbmDevNullSink : public FairMQDevice {
public:
CbmDevNullSink();
virtual ~CbmDevNullSink();
protected:
virtual void InitTask();
virtual void Init();
bool HandleData(FairMQMessagePtr&, int);
private:
uint64_t fNumMessages;
};
#endif /* CBMDEVNULLSINK_H_ */