Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add missing PCL_EXPORTS in pcl_visualizer.h #1995

Merged
merged 2 commits into from
Sep 18, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions visualization/include/pcl/visualization/pcl_visualizer.h
Original file line number Diff line number Diff line change
Expand Up @@ -1939,7 +1939,7 @@ namespace pcl
vtkSmartPointer<vtkRenderWindowInteractor> interactor_;
#endif
private:
struct ExitMainLoopTimerCallback : public vtkCommand
struct PCL_EXPORTS ExitMainLoopTimerCallback : public vtkCommand
{
static ExitMainLoopTimerCallback* New ()
{
Expand All @@ -1952,7 +1952,7 @@ namespace pcl
PCLVisualizer* pcl_visualizer;
};

struct ExitCallback : public vtkCommand
struct PCL_EXPORTS ExitCallback : public vtkCommand
{
static ExitCallback* New ()
{
Expand All @@ -1965,7 +1965,7 @@ namespace pcl
};

//////////////////////////////////////////////////////////////////////////////////////////////
struct FPSCallback : public vtkCommand
struct PCL_EXPORTS FPSCallback : public vtkCommand
{
static FPSCallback *New () { return (new FPSCallback); }

Expand Down