Skip to content
Snippets Groups Projects
NexusFileLoader.cpp 944 B
Newer Older
Hahn, Steven's avatar
Hahn, Steven committed
// Mantid Repository : https://github.com/mantidproject/mantid
//
// Copyright © 2018 ISIS Rutherford Appleton Laboratory UKRI,
//     NScD Oak Ridge National Laboratory, European Spallation Source
//     & Institut Laue - Langevin
// SPDX - License - Identifier: GPL - 3.0 +
#include "MantidDataHandling/NexusFileLoader.h"
Hahn, Steven's avatar
Hahn, Steven committed

namespace Mantid::DataHandling {
  void NexusFileLoader::exec() {}
  boost::shared_ptr<Mantid::API::Algorithm>
  NexusFileLoader::createChildAlgorithm(const std::string &name,
                                        const double startProgress,
                                        const double endProgress,
                                        const bool enableLogging,
                                        const int &version) {
    return nullptr;
  }
  void NexusFileLoader::setFileInfo(
      std::shared_ptr<Mantid::Kernel::NexusHDF5Descriptor> fileInfo) {
    m_fileInfo = std::move(fileInfo);
Hahn, Steven's avatar
Hahn, Steven committed
}