mirror of
https://github.com/FairRootGroup/FairMQ.git
synced 2025-10-15 09:31:45 +00:00
Move config & control DDS functionality into plugins.
This commit is contained in:
27
fairmq/FairMQConfigPlugin.h
Normal file
27
fairmq/FairMQConfigPlugin.h
Normal file
@@ -0,0 +1,27 @@
|
||||
/********************************************************************************
|
||||
* 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" *
|
||||
********************************************************************************/
|
||||
|
||||
#ifndef FAIRMQCONFIGPLUGIN_H_
|
||||
#define FAIRMQCONFIGPLUGIN_H_
|
||||
|
||||
class FairMQDevice;
|
||||
|
||||
extern "C"
|
||||
struct FairMQConfigPlugin
|
||||
{
|
||||
typedef void (*init_t)(FairMQDevice&);
|
||||
init_t initConfig;
|
||||
|
||||
typedef void (*handleInitialConfig_t)(FairMQDevice&);
|
||||
handleInitialConfig_t handleInitialConfig;
|
||||
|
||||
typedef void (*stop_t)();
|
||||
stop_t stopConfig;
|
||||
};
|
||||
|
||||
#endif /* FAIRMQCONFIGPLUGIN_H_ */
|
Reference in New Issue
Block a user