Skip to content

Commit

Permalink
Fix DLL export declarations.
Browse files Browse the repository at this point in the history
Refs #9319
  • Loading branch information
martyngigg committed Apr 23, 2014
1 parent 01572c5 commit 28474ab
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions Code/Mantid/MantidQt/API/inc/MantidQtAPI/QwtRasterDataMD.h
@@ -1,14 +1,17 @@
#ifndef QwtRasterDataMD_H_
#define QwtRasterDataMD_H_

#include "MantidQtAPI/DllOption.h"
#include "MantidAPI/MatrixWorkspace.h"
#include "MantidAPI/SpectraDetectorTypes.h"
#include "MantidGeometry/MDGeometry/IMDDimension.h"
#include "MantidGeometry/MDGeometry/MDTypes.h"
#include "MantidGeometry/MDGeometry/MDHistoDimension.h"

#include <qwt_double_interval.h>
#include <qwt_raster_data.h>

#include <vector>
#include "MantidGeometry/MDGeometry/MDHistoDimension.h"
#include "MantidGeometry/MDGeometry/IMDDimension.h"
#include "MantidAPI/SpectraDetectorTypes.h"

namespace MantidQt
{
Expand All @@ -25,7 +28,7 @@ namespace API
* @date Sep 29, 2011
*/

class QWT_EXPORT QwtRasterDataMD : public QwtRasterData
class EXPORT_OPT_MANTIDQT_API QwtRasterDataMD : public QwtRasterData
{
public:
QwtRasterDataMD();
Expand Down Expand Up @@ -110,7 +113,7 @@ class QWT_EXPORT QwtRasterDataMD : public QwtRasterData
//-----------------------------------------------------------------
// Specialised class for 2D data with no overlays
//-----------------------------------------------------------------
class QWT_EXPORT NoOverlayRaster2D : public QwtRasterDataMD
class EXPORT_OPT_MANTIDQT_API NoOverlayRaster2D : public QwtRasterDataMD
{
public:
void setWorkspace(Mantid::API::IMDWorkspace_const_sptr ws);
Expand Down

0 comments on commit 28474ab

Please sign in to comment.