FairMQ/fairmq/examples/1-sampler-sink/FairMQExample1Sink.h
Alexey Rybalchenko 2656d8098c Add first two simple FairMQ examples
fairmq/examples/1-sampler-sink
fairmq/examples/2-sampler-processor-sink
2015-06-22 16:35:00 +02:00

31 lines
946 B
C++

/********************************************************************************
* Copyright (C) 2014 GSI Helmholtzzentrum fuer Schwerionenforschung GmbH *
* *
* This software is distributed under the terms of the *
* GNU Lesser General Public Licence version 3 (LGPL) version 3, *
* copied verbatim in the file "LICENSE" *
********************************************************************************/
/**
* FairMQExample1Sink.h
*
* @since 2014-10-10
* @author A. Rybalchenko
*/
#ifndef FAIRMQEXAMPLE1SINK_H_
#define FAIRMQEXAMPLE1SINK_H_
#include "FairMQDevice.h"
class FairMQExample1Sink : public FairMQDevice
{
public:
FairMQExample1Sink();
virtual ~FairMQExample1Sink();
protected:
virtual void Run();
};
#endif /* FAIRMQEXAMPLE1SINK_H_ */