Newer
Older
// Mantid Repository : https://github.com/mantidproject/mantid
//
// Copyright © 2010 ISIS Rutherford Appleton Laboratory UKRI,
// NScD Oak Ridge National Laboratory, European Spallation Source
// & Institut Laue - Langevin
// SPDX - License - Identifier: GPL - 3.0 +
Roman Tolchenov
committed
#ifndef MANTID_API_ARCHIVESEARCHFACTORY_H_
#define MANTID_API_ARCHIVESEARCHFACTORY_H_
//----------------------------------------------------------------------
// Includes
//----------------------------------------------------------------------
Gigg, Martyn Anthony
committed
#include "MantidAPI/DllConfig.h"
Roman Tolchenov
committed
#include "MantidKernel/DynamicFactory.h"
#include "MantidKernel/Logger.h"
Roman Tolchenov
committed
namespace Mantid {
namespace API {
class IArchiveSearch;
/**
Creates instances of IArchiveSearch
@author Roman Tolchenov, Tessella plc
@date 27/07/2010
*/
class MANTID_API_DLL ArchiveSearchFactoryImpl
: public Kernel::DynamicFactory<IArchiveSearch> {
ArchiveSearchFactoryImpl(const ArchiveSearchFactoryImpl &) = delete;
ArchiveSearchFactoryImpl &
operator=(const ArchiveSearchFactoryImpl &) = delete;
private:
friend struct Mantid::Kernel::CreateUsingNew<ArchiveSearchFactoryImpl>;
/// Private Constructor for singleton class
ArchiveSearchFactoryImpl();
/// Private Destructor
~ArchiveSearchFactoryImpl() override = default;
using ArchiveSearchFactory =
Mantid::Kernel::SingletonHolder<ArchiveSearchFactoryImpl>;
Roman Tolchenov
committed
namespace Mantid {
namespace Kernel {
EXTERN_MANTID_API template class MANTID_API_DLL
Mantid::Kernel::SingletonHolder<Mantid::API::ArchiveSearchFactoryImpl>;
#endif // MANTID_API_ARCHIVESEARCHFACTORY_H_