Skip to content
Snippets Groups Projects
InstrumentPresenter.cpp 380 B
Newer Older
Gemma Guest's avatar
Gemma Guest committed
#include "InstrumentPresenter.h"

namespace MantidQt {
namespace CustomInterfaces {

InstrumentPresenter::InstrumentPresenter(IInstrumentView *view)
    : m_view(view) {
  m_view->subscribe(this);
  notifySettingsChanged();
}

void InstrumentPresenter::notifySettingsChanged() {
  //auto validationResult = updateModelFromView();
  //showValidationResult(validationResult);
}
}
}