Newer
Older
// Mantid Repository : https://github.com/mantidproject/mantid
//
// Copyright © 2015 ISIS Rutherford Appleton Laboratory UKRI,
// NScD Oak Ridge National Laboratory, European Spallation Source
// & Institut Laue - Langevin
// SPDX - License - Identifier: GPL - 3.0 +
#ifndef MANTID_API_FILEBACKEDEXPERIMENTINFO_H_
#define MANTID_API_FILEBACKEDEXPERIMENTINFO_H_
#include "MantidAPI/ExperimentInfo.h"
/**
Implements a lazy-loading mechanism for the experimental information
stored in a NeXus file.
class MANTID_API_DLL FileBackedExperimentInfo : public ExperimentInfo {
FileBackedExperimentInfo(const std::string &filename,
Lamar Moore
committed
const std::string &nxpath);
ExperimentInfo *cloneExperimentInfo() const override;
void populateIfNotLoaded() const override;
void populateFromFile() const;
std::string m_filename;
std::string m_nxpath;
} // namespace API
} // namespace Mantid
#endif /* MANTID_API_FILEBACKEDEXPERIMENTINFO_H_ */