Skip to content

missing PCL_EXPORTS for pcl::people::HOG class #196

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

Merged
merged 1 commit into from
Jul 17, 2013
Merged
Show file tree
Hide file tree
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
16 changes: 4 additions & 12 deletions people/include/pcl/people/hog.h
Original file line number Diff line number Diff line change
Expand Up @@ -41,15 +41,7 @@
#ifndef PCL_PEOPLE_HOG_H_
#define PCL_PEOPLE_HOG_H_

#define _USE_MATH_DEFINES
#include <math.h>
#include <string.h>

#if defined(__SSE2__)
#include <pcl/sse.h>
#else
#include <cstdlib>
#endif
#include <pcl/pcl_macros.h>

namespace pcl
{
Expand All @@ -60,9 +52,9 @@ namespace pcl
* \author Matteo Munaro, Stefano Ghidoni, Stefano Michieletto
* \ingroup people
*/
class HOG
class PCL_EXPORTS HOG
{
public:
public:

/** \brief Constructor. */
HOG ();
Expand Down Expand Up @@ -168,7 +160,7 @@ namespace pcl
void
alFree (void* aligned) const;

protected:
protected:

/** \brief image height (default = 128) */
int h_;
Expand Down
10 changes: 10 additions & 0 deletions people/src/hog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,16 @@

#include <pcl/people/hog.h>

#define _USE_MATH_DEFINES
#include <math.h>
#include <string.h>

#if defined(__SSE2__)
#include <pcl/sse.h>
#else
#include <cstdlib>
#endif

/** \brief Constructor. */
pcl::people::HOG::HOG ()
{
Expand Down