Newer
Older
Peterson, Peter
committed
#ifndef MANTID_API_COLUMNFACTORY_H_
#define MANTID_API_COLUMNFACTORY_H_
//----------------------------------------------------------------------
// Includes
//----------------------------------------------------------------------
#include <vector>
Gigg, Martyn Anthony
committed
#include "MantidAPI/DllConfig.h"
Peterson, Peter
committed
#include "MantidKernel/DynamicFactory.h"
#include "MantidKernel/SingletonHolder.h"
namespace Mantid
{
namespace API
{
//----------------------------------------------------------------------
// Forward declarations
//----------------------------------------------------------------------
Peterson, Peter
committed
class Column;
/** @class ColumnFactoryImpl
The ColumnFactory class is in charge of the creation of concrete
instances of columns. It inherits most of its implementation from
the Dynamic Factory base class.
It is implemented as a singleton class.
@author Roman Tolchenov, Tessella Support Services plc
@date 31/10/2008
Copyright © 2007 ISIS Rutherford Appleton Laboratory & NScD Oak Ridge National Laboratory
Peterson, Peter
committed
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>
Peterson, Peter
committed
*/
class MANTID_API_DLL ColumnFactoryImpl : public Kernel::DynamicFactory<Column>
Peterson, Peter
committed
{
public:
Gigg, Martyn Anthony
committed
///Creates an instance of a column
Peterson, Peter
committed
boost::shared_ptr<Column> create(const std::string& type) const;
Peterson, Peter
committed
private:
Gigg, Martyn Anthony
committed
friend struct Mantid::Kernel::CreateUsingNew<ColumnFactoryImpl>;
Peterson, Peter
committed
Gigg, Martyn Anthony
committed
/// Private Constructor for singleton class
Peterson, Peter
committed
ColumnFactoryImpl();
Gigg, Martyn Anthony
committed
/// Private copy constructor - NO COPY ALLOWED
ColumnFactoryImpl(const ColumnFactoryImpl&);
/// Private assignment operator - NO ASSIGNMENT ALLOWED
ColumnFactoryImpl& operator = (const ColumnFactoryImpl&);
///Private Destructor
virtual ~ColumnFactoryImpl();
Peterson, Peter
committed
};
Gigg, Martyn Anthony
committed
///Forward declaration of a specialisation of SingletonHolder for AlgorithmFactoryImpl (needed for dllexport/dllimport) and a typedef for it.
Peterson, Peter
committed
#ifdef _WIN32
// this breaks new namespace declaraion rules; need to find a better fix
template class MANTID_API_DLL Mantid::Kernel::SingletonHolder<ColumnFactoryImpl>;
Peterson, Peter
committed
#endif /* _WIN32 */
typedef MANTID_API_DLL Mantid::Kernel::SingletonHolder<ColumnFactoryImpl> ColumnFactory;
Gigg, Martyn Anthony
committed
Peterson, Peter
committed
} // namespace API
} // namespace Mantid
#endif /*MANTID_API_COLUMNFACTORY_H_*/