--- D:\projects\boost_root\boost\boost\signals\connection.hpp 2002-08-26 10:29:36.000000000 -0500 +++ connection.hpp 2003-02-13 23:37:23.000000000 -0600 @@ -56,7 +56,7 @@ // The user may freely pass around the "connection" object and terminate // the connection at any time using disconnect(). - class connection : + class BOOST_SIGNALS_DECL connection : private less_than_comparable1, private equality_comparable1 { @@ -107,7 +107,7 @@ // Similar to connection, but will disconnect the connection when it is // destroyed unless release() has been called. - class scoped_connection : public connection { + class BOOST_SIGNALS_DECL scoped_connection : public connection { public: scoped_connection() : connection(), released(false) {} scoped_connection(const connection&);