DABC (Data Acquisition Backbone Core)  2.9.9
Factory.h
Go to the documentation of this file.
1 // $Id: Factory.h 3862 2018-05-11 10:06:18Z linev $
2 
3 /************************************************************
4  * The Data Acquisition Backbone Core (DABC) *
5  ************************************************************
6  * Copyright (C) 2009 - *
7  * GSI Helmholtzzentrum fuer Schwerionenforschung GmbH *
8  * Planckstr. 1, 64291 Darmstadt, Germany *
9  * Contact: http://dabc.gsi.de *
10  ************************************************************
11  * This software can be used under the GPL license *
12  * agreements as stated in LICENSE.txt file *
13  * which is part of the distribution. *
14  ************************************************************/
15 
16 #ifndef FESA_Factory
17 #define FESA_Factory
18 
19 #ifndef DABC_Factory
20 #include "dabc/Factory.h"
21 #endif
22 
25 namespace fesa {
26 
29  class Factory : public dabc::Factory {
30  public:
31  Factory(const std::string &name) : dabc::Factory(name) {}
32 
33  virtual dabc::Module* CreateModule(const std::string &classname, const std::string &modulename, dabc::Command cmd);
34 
35  protected:
36 
37  };
38 
39 }
40 
41 #endif
Represents command with its arguments.
Definition: Command.h:99
Factory for user-specific classes
Definition: Factory.h:47
Base for dabc::ModuleSync and dabc::ModuleAsync classes.
Definition: Module.h:42
Factory of MBS classes
Definition: Factory.h:29
Factory(const std::string &name)
Definition: Factory.h:31
virtual dabc::Module * CreateModule(const std::string &classname, const std::string &modulename, dabc::Command cmd)
Factory method to create module.
Definition: Factory.cxx:24
Event manipulation API.
Definition: api.h:23
Support for FESA - the control system of GSI/FAIR accelerator.
Definition: Factory.h:25