mirror of
https://github.com/FairRootGroup/FairMQ.git
synced 2025-10-13 00:31:14 +00:00
26 lines
456 B
C++
26 lines
456 B
C++
/**
|
|
* FairMQProcessorTask.h
|
|
*
|
|
* @since Dec 6, 2012-12-06
|
|
* @author: D. Klein, A. Rybalchenko
|
|
*/
|
|
|
|
#ifndef FAIRMQPROCESSORTASK_H_
|
|
#define FAIRMQPROCESSORTASK_H_
|
|
|
|
#include <vector>
|
|
|
|
#include "FairMQMessage.h"
|
|
#include "FairTask.h"
|
|
|
|
|
|
class FairMQProcessorTask : public FairTask
|
|
{
|
|
public:
|
|
FairMQProcessorTask();
|
|
virtual ~FairMQProcessorTask();
|
|
virtual void Exec(FairMQMessage* msg, Option_t* opt) = 0;
|
|
};
|
|
|
|
#endif /* FAIRMQPROCESSORTASK_H_ */
|