Skip to content
Merged
Show file tree
Hide file tree
Changes from 12 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
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
* @date December 2014
*/

#include <gtsam_unstable/geometry/Event.h>
#include <gtsam/geometry/Event.h>
#include <iostream>

namespace gtsam {
Expand Down
6 changes: 3 additions & 3 deletions gtsam_unstable/geometry/Event.h → gtsam/geometry/Event.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
#pragma once

#include <gtsam/geometry/Point3.h>
#include <gtsam_unstable/dllexport.h>
#include <gtsam/dllexport.h>

#include <cmath>
#include <iosfwd>
Expand All @@ -34,7 +34,7 @@ namespace gtsam {
* SLAM, where we have "time of arrival" measurements at a set of sensors. The
* TOA functor below provides a measurement function for those applications.
*/
class GTSAM_UNSTABLE_EXPORT Event {
class GTSAM_EXPORT Event {
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

TimeOfArrival might also need an EXPORT

double time_; ///< Time event was generated
Point3 location_; ///< Location at time event was generated

Expand Down Expand Up @@ -84,7 +84,7 @@ template <>
struct traits<Event> : internal::Manifold<Event> {};

/// Time of arrival to given sensor
class TimeOfArrival {
class GTSAM_EXPORT TimeOfArrival {
const double speed_; ///< signal speed

public:
Expand Down
Loading
Loading