From cd470df6721f546ff8ad5346b024fa9c615f569b Mon Sep 17 00:00:00 2001 From: Richard Roberts Date: Tue, 21 May 2013 15:23:42 +0000 Subject: [PATCH] Added GTSAM_EXPORT tags --- gtsam/nonlinear/Key.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/gtsam/nonlinear/Key.h b/gtsam/nonlinear/Key.h index d7e7ed224..bcc08d9cd 100644 --- a/gtsam/nonlinear/Key.h +++ b/gtsam/nonlinear/Key.h @@ -58,16 +58,16 @@ namespace gtsam { typedef FastSet KeySet; /// Utility function to print sets of keys with optional prefix - void printKeySet(const KeySet& keys, const std::string& s = "", + GTSAM_EXPORT void printKeySet(const KeySet& keys, const std::string& s = "", const KeyFormatter& keyFormatter = DefaultKeyFormatter); /// Computes the intersection between two sets - gtsam::KeySet keyIntersection(const gtsam::KeySet& keysA, const gtsam::KeySet& keysB); + GTSAM_EXPORT gtsam::KeySet keyIntersection(const gtsam::KeySet& keysA, const gtsam::KeySet& keysB); /// Checks if an intersection exists - faster checking size of above - bool hasKeyIntersection(const gtsam::KeySet& keysA, const gtsam::KeySet& keysB); + GTSAM_EXPORT bool hasKeyIntersection(const gtsam::KeySet& keysA, const gtsam::KeySet& keysB); /// Computes a difference between sets, so result is those that are in A, but not B - gtsam::KeySet keyDifference(const gtsam::KeySet& keysA, const gtsam::KeySet& keysB); + GTSAM_EXPORT gtsam::KeySet keyDifference(const gtsam::KeySet& keysA, const gtsam::KeySet& keysB); }