FairMQRegion and examples/advanced/Region

This commit is contained in:
Alexey Rybalchenko
2017-06-02 13:50:13 +02:00
parent ae4e474261
commit f6ee1cdf57
9 changed files with 336 additions and 0 deletions

View File

@@ -0,0 +1,32 @@
/********************************************************************************
* 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" *
********************************************************************************/
/**
* FairMQExampleRegionSink.h
*
* @since 2014-10-10
* @author A. Rybalchenko
*/
#ifndef FAIRMQEXAMPLEREGIONSINK_H_
#define FAIRMQEXAMPLEREGIONSINK_H_
#include <string>
#include "FairMQDevice.h"
class FairMQExampleRegionSink : public FairMQDevice
{
public:
FairMQExampleRegionSink();
virtual ~FairMQExampleRegionSink();
protected:
virtual void Run();
};
#endif /* FAIRMQEXAMPLEREGIONSINK_H_ */