Skip to content
Snippets Groups Projects
presenter.py 686 B
Newer Older
# 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 +
# pylint: disable=invalid-name
from __future__ import (absolute_import, division, print_function)

from Engineering.gui.engineering_diffraction.tabs.calibration.model import CalibrationModel
from Engineering.gui.engineering_diffraction.tabs.calibration.view import CalibrationView


class CalibrationPresenter(object):
    def __init__(self, model, view):
        self.model = model
        self.view = view