mirror of
https://github.com/FairRootGroup/FairMQ.git
synced 2025-10-13 00:31:14 +00:00
git-svn-id: https://subversion.gsi.de/fairroot/fairbase/trunk@22451 0381ead4-6506-0410-b988-94b70fbc4730
30 lines
748 B
C++
30 lines
748 B
C++
/*
|
|
* FairMQConfigurable.h
|
|
*
|
|
* Created on: Oct 25, 2012
|
|
* Author: dklein
|
|
*/
|
|
|
|
#ifndef FAIRMQCONFIGURABLE_H_
|
|
#define FAIRMQCONFIGURABLE_H_
|
|
|
|
#include "Rtypes.h"
|
|
#include "TString.h"
|
|
|
|
|
|
class FairMQConfigurable
|
|
{
|
|
public:
|
|
enum {
|
|
Last = 1
|
|
};
|
|
FairMQConfigurable();
|
|
virtual void SetProperty(const Int_t& key, const TString& value, const Int_t& slot = 0);
|
|
virtual TString GetProperty(const Int_t& key, const TString& default_ = "", const Int_t& slot = 0);
|
|
virtual void SetProperty(const Int_t& key, const Int_t& value, const Int_t& slot = 0);
|
|
virtual Int_t GetProperty(const Int_t& key, const Int_t& default_ = 0, const Int_t& slot = 0);
|
|
virtual ~FairMQConfigurable();
|
|
};
|
|
|
|
#endif /* FAIRMQCONFIGURABLE_H_ */
|