Skip to content
Snippets Groups Projects
Commit 2c507960 authored by Pospelov, Gennady's avatar Pospelov, Gennady
Browse files

Fix missed export for Windows

parent ceee37a8
No related branches found
No related tags found
No related merge requests found
......@@ -15,12 +15,13 @@
#ifndef IPIXEL_H
#define IPIXEL_H
#include "WinDllMacros.h"
#include "Vectors3D.h"
//! Interface for a function that maps [0,1]x[0,1] to the kvectors in a pixel.
//! @ingroup simulation
class IPixel
class BA_CORE_API_ IPixel
{
public:
virtual ~IPixel() {}
......
......@@ -107,7 +107,7 @@ private:
kvector_t m_v_unit;
};
class RectangularPixel : public IPixel
class BA_CORE_API_ RectangularPixel : public IPixel
{
public:
RectangularPixel(kvector_t corner_pos, kvector_t width, kvector_t height);
......
......@@ -61,7 +61,7 @@ protected:
size_t getIndexOfSpecular(const Beam& beam) const override;
};
class SphericalPixel : public IPixel
class BA_CORE_API_ SphericalPixel : public IPixel
{
public:
SphericalPixel(const Bin1D& alpha_bin, const Bin1D& phi_bin);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment