Skip to content

Commit

Permalink
Re #10576. Added missing includes and declarations.
Browse files Browse the repository at this point in the history
  • Loading branch information
mantid-roman committed Apr 9, 2015
1 parent 3bf285d commit 2190ff6
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 5 deletions.
Expand Up @@ -6,6 +6,15 @@
// Forward declaration
class QTableWidget;

// Forward declaration
namespace Mantid
{
namespace API
{
class MatrixWorkspace;
}
}

namespace MantidQt
{

Expand Down
Expand Up @@ -3,6 +3,7 @@

#include <QObject>
#include <QMap>
#include <boost/shared_ptr.hpp>

// Forward declarations
class QwtPlot;
Expand All @@ -15,10 +16,10 @@ class QPushButton;

namespace MantidQt
{
namespace MantidWidgets
{
class RangeSelector;
}
namespace MantidWidgets
{
class RangeSelector;
}

namespace CustomInterfaces
{
Expand Down
@@ -1,5 +1,9 @@
#include "MantidQtCustomInterfaces/MultiDatasetFit/MDFDatasetPlotData.h"

#include "MantidAPI/AnalysisDataService.h"
#include "MantidAPI/MatrixWorkspace.h"
#include "MantidKernel/Exception.h"

#include <qwt_plot_curve.h>

namespace MantidQt
Expand Down Expand Up @@ -55,7 +59,6 @@ DatasetPlotData::DatasetPlotData(const QString& wsName, int wsIndex, const QStri

// create the curves
setData( ws.get(), wsIndex, outputWS.get() );

}

/// Destructor.
Expand Down

0 comments on commit 2190ff6

Please sign in to comment.