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 EZCA_FACTORY_H
17 #define EZCA_FACTORY_H
18 
19 #ifndef DABC_Factory
20 #include "dabc/Factory.h"
21 #endif
22 
25 namespace ezca {
26 
29  class Factory: public dabc::Factory {
30 
31  public:
32 
33  Factory(const std::string &name);
34 
35  virtual dabc::DataInput* CreateDataInput(const std::string &typ);
36 
37  virtual dabc::Module* CreateModule(const std::string &classname, const std::string &modulename, dabc::Command cmd);
38  };
39 
40 }
41 
42 #endif
43 
Represents command with its arguments.
Definition: Command.h:99
Interface for implementing any kind of data input.
Definition: DataIO.h:61
Factory for user-specific classes
Definition: Factory.h:47
Base for dabc::ModuleSync and dabc::ModuleAsync classes.
Definition: Module.h:42
Factory for epics eazy channel access classes
Definition: Factory.h:29
Factory(const std::string &name)
Definition: Factory.cxx:47
virtual dabc::DataInput * CreateDataInput(const std::string &typ)
Factory method to create data input.
Definition: Factory.cxx:52
virtual dabc::Module * CreateModule(const std::string &classname, const std::string &modulename, dabc::Command cmd)
Factory method to create module.
Definition: Factory.cxx:61
EPICS E-Z (easy) channel access.
Definition: Definitions.h:26