#ifndef MANTID_KERNEL_ALGORITHMFACTORY_H_ #define MANTID_KERNEL_ALGORITHMFACTORY_H_ //---------------------------------------------------------------------- // Includes //---------------------------------------------------------------------- #include "DynamicFactory.h" #include "Logger.h" namespace Mantid { namespace Kernel { //---------------------------------------------------------------------- // Forward declaration //---------------------------------------------------------------------- class IAlgorithm; /** @class AlgorithmFactory AlgorithmFactory.h Kernel/AlgorithmFactory.h The AlgorithmFactory class is in charge of the creation of concrete instances of Algorithms. It inherits most of its implementation from the Dynamic Factory base class. It is implemented as a singleton class. @author Russell Taylor, Tessella Support Services plc @date 21/09/2007 Copyright © 2007 ???RAL??? This file is part of Mantid. Mantid is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 3 of the License, or (at your option) any later version. Mantid is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. File change history is stored at: <https://svn.mantidproject.org/mantid/trunk/Code/Mantid> */ class DLLExport AlgorithmFactory : public DynamicFactory<IAlgorithm> { public: /** A static method which retrieves the single instance of the Algorithm Factory * * @returns A pointer to the factory instance */ static AlgorithmFactory* Instance(); protected: /// Protected Constructor for singleton class AlgorithmFactory(); /** Protected destructor * Prevents client from calling 'delete' on the pointer handed * out by Instance */ virtual ~AlgorithmFactory(); private: /// Private copy constructor - NO COPY ALLOWED AlgorithmFactory(const AlgorithmFactory&); /// Private assignment operator - NO ASSIGNMENT ALLOWED AlgorithmFactory& operator = (const AlgorithmFactory&); ///static reference to the logger class static Logger& g_log; /// Pointer to the factory instance static AlgorithmFactory* m_instance; }; } // namespace Kernel } // namespace Mantid #endif /*MANTID_KERNEL_ALGORITHMFACTORY_H_*/