Mantid
Loading...
Searching...
No Matches
MantidHelpInterface.cpp
Go to the documentation of this file.
1// Mantid Repository : https://github.com/mantidproject/mantid
2//
3// Copyright © 2018 ISIS Rutherford Appleton Laboratory UKRI,
4// NScD Oak Ridge National Laboratory, European Spallation Source,
5// Institut Laue - Langevin & CSNS, Institute of High Energy Physics, CAS
6// SPDX - License - Identifier: GPL - 3.0 +
8#include <QString>
9#include <QUrl>
10
11using namespace MantidQt::API;
12using std::string;
13
15
17
18void MantidHelpInterface::showPage(const std::string &url) { UNUSED_ARG(url); }
19
20void MantidHelpInterface::showPage(const QString &url) { UNUSED_ARG(url); }
21
22void MantidHelpInterface::showPage(const QUrl &url) { UNUSED_ARG(url); }
23
24void MantidHelpInterface::showConcept(const std::string &page) { UNUSED_ARG(page); }
25
26void MantidHelpInterface::showConcept(const QString &page) { UNUSED_ARG(page); }
27
28void MantidHelpInterface::showAlgorithm(const std::string &name, const int version) {
30 UNUSED_ARG(version);
31}
32
33void MantidHelpInterface::showAlgorithm(const QString &name, const int version) {
35 UNUSED_ARG(version);
36}
37
39
41
42void MantidHelpInterface::showCustomInterface(const std::string &name, const std::string &area,
43 const std::string &section) {
45 UNUSED_ARG(area);
46 UNUSED_ARG(section);
47}
48
49void MantidHelpInterface::showCustomInterface(const QString &name, const QString &area, const QString &section) {
51 UNUSED_ARG(area);
52 UNUSED_ARG(section);
53}
54
std::string name
Definition Run.cpp:60
#define UNUSED_ARG(x)
Function arguments are sometimes unused in certain implmentations but are required for documentation ...
Definition System.h:48
virtual void showConcept(const std::string &name)
virtual void showCustomInterface(const std::string &name, const std::string &area=std::string(), const std::string &section=std::string())
virtual void shutdown()
Perform any clean up on main window shutdown.
~MantidHelpInterface() override
Default destructor.
virtual void showFitFunction(const std::string &name=std::string())
virtual void showAlgorithm(const std::string &name=std::string(), const int version=-1)
virtual void showPage(const std::string &url=std::string())
MantidHelpInterface()
Default constructor.