Newer
Older
#ifndef MANTID_API_COSTFUNCTIONFACTORY_H_
#define MANTID_API_COSTFUNCTIONFACTORY_H_
//----------------------------------------------------------------------
// Includes
//----------------------------------------------------------------------
#include <vector>
#include "MantidAPI/DllConfig.h"
#include "MantidKernel/DynamicFactory.h"
#include "MantidKernel/SingletonHolder.h"
namespace Mantid
{
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
//----------------------------------------------------------------------
// More forward declarations
//----------------------------------------------------------------------
class ICostFunction;
/** @class CostFunctionFactoryImpl
The CostFunctionFactory class is in charge of the creation of concrete
instances of minimizers. It inherits most of its implementation from
the Dynamic Factory base class.
It is implemented as a singleton class.
@author Anders Markvardsen, ISIS, RAL
@date 20/05/2010
Copyright © 2010 ISIS Rutherford Appleton Laboratory & NScD Oak Ridge National Laboratory
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://github.com/mantidproject/mantid>
Anders Markvardsen
committed
class MANTID_API_DLL CostFunctionFactoryImpl : public Kernel::DynamicFactory<ICostFunction>
/**Creates an instance of a cost function
* @param type :: The function's type
* @return A pointer to the created function
*/
ICostFunction* createFunction(const std::string& type) const;
private:
friend struct Mantid::Kernel::CreateUsingNew<CostFunctionFactoryImpl>;
/// Private Constructor for singleton class
CostFunctionFactoryImpl();
};
Gigg, Martyn Anthony
committed
///Forward declaration of a specialisation of SingletonHolder for AlgorithmFactoryImpl (needed for dllexport/dllimport) and a typedef for it.
#ifdef _WIN32
// this breaks new namespace declaraion rules; need to find a better fix
Anders Markvardsen
committed
template class MANTID_API_DLL Mantid::Kernel::SingletonHolder<CostFunctionFactoryImpl>;
Anders Markvardsen
committed
typedef MANTID_API_DLL Mantid::Kernel::SingletonHolder<CostFunctionFactoryImpl> CostFunctionFactory;
Gigg, Martyn Anthony
committed
} // namespace API
} // namespace Mantid
#endif /*MANTID_API_COSTFUNCTIONFACTORY_H_*/