// $Id$ /************************************************************ * The Data Acquisition Backbone Core (DABC) * ************************************************************ * Copyright (C) 2009 - * * GSI Helmholtzzentrum fuer Schwerionenforschung GmbH * * Planckstr. 1, 64291 Darmstadt, Germany * * Contact: http://dabc.gsi.de * ************************************************************ * This software can be used under the GPL license * * agreements as stated in LICENSE.txt file * * which is part of the distribution. * ************************************************************/ #ifndef ELDERDABC_Factory #define ELDERDABC_Factory #ifndef DABC_Factory #include "dabc/Factory.h" #endif /** \brief Support for stream framework in DABC */ namespace elderdabc { /** \brief %Factory for ELDER DABC classes */ class Factory : public dabc::Factory { public: Factory(const std::string &name) : dabc::Factory(name) {} dabc::Module *CreateModule(const std::string &classname, const std::string &modulename, dabc::Command cmd) override; }; } #endif