Skip to content
Snippets Groups Projects
PeakTransformFactory.h 788 B
Newer Older
#ifndef MANTID_GEOMETRY_PEAKTRANSFORMFACTORY_H_
#define MANTID_GEOMETRY_PEAKTRANSFORMFACTORY_H_
#include "MantidKernel/System.h"
#include "MantidGeometry/Crystal/PeakTransform.h"
#include <boost/shared_ptr.hpp>
namespace Mantid {
namespace Geometry {
/**
@class PeakTransformFactory
Abstract type defining Factory Method interface for generating PeakTransforms
*/
class DLLExport PeakTransformFactory {
public:
  virtual PeakTransform_sptr createDefaultTransform() const = 0;
  virtual PeakTransform_sptr
  createTransform(const std::string &xPlotLabel,
                  const std::string &yPlotLabel) const = 0;
  virtual ~PeakTransformFactory() = default;
/// Factory Shared Pointer typedef.
typedef boost::shared_ptr<PeakTransformFactory> PeakTransformFactory_sptr;
}