summaryrefslogtreecommitdiff
path: root/indra/llcommon/lllistenerwrapper.h
diff options
context:
space:
mode:
authorMark Palange (Mani) <palange@lindenlab.com>2009-12-03 13:11:35 -0800
committerMark Palange (Mani) <palange@lindenlab.com>2009-12-03 13:11:35 -0800
commit5729a0a6a3ea3f024f37b15d223a8c317e5032fd (patch)
tree1ebcde44546f878f0710cdc727a6933c8edfdc43 /indra/llcommon/lllistenerwrapper.h
parent1de537d1bd0532269960490e859259ebe9391834 (diff)
Fix to windows build breakages.
Reviewed by Brad
Diffstat (limited to 'indra/llcommon/lllistenerwrapper.h')
-rw-r--r--indra/llcommon/lllistenerwrapper.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/indra/llcommon/lllistenerwrapper.h b/indra/llcommon/lllistenerwrapper.h
index e7bad1423a..2f747fb182 100644
--- a/indra/llcommon/lllistenerwrapper.h
+++ b/indra/llcommon/lllistenerwrapper.h
@@ -24,7 +24,7 @@
* derivation from LLEventTrackable, and so forth.
*/
template <typename LISTENER>
-class LL_COMMON_API LLListenerWrapper: public LLListenerWrapperBase
+class LLListenerWrapper: public LLListenerWrapperBase
{
public:
/// Wrap an arbitrary listener object
@@ -89,7 +89,7 @@ struct ll_template_cast_impl<const LLListenerWrapperBase*, const CLASS<T>*> \
* write llwrap<Wrapper>(boost::bind(...)).
*/
template <template<typename> class WRAPPER, typename T>
-WRAPPER<T> LL_COMMON_API llwrap(const T& listener)
+WRAPPER<T> llwrap(const T& listener)
{
return WRAPPER<T>(listener);
}
@@ -109,7 +109,7 @@ WRAPPER<T> LL_COMMON_API llwrap(const T& listener)
* @endcode
*/
template <class LISTENER>
-class LL_COMMON_API LLCoutListener: public LLListenerWrapper<LISTENER>
+class LLCoutListener: public LLListenerWrapper<LISTENER>
{
typedef LLListenerWrapper<LISTENER> super;
@@ -151,7 +151,7 @@ LLLISTENER_WRAPPER_SUBCLASS(LLCoutListener);
* @endcode
*/
template <class LISTENER>
-class LL_COMMON_API LLLogListener: public LLListenerWrapper<LISTENER>
+class LLLogListener: public LLListenerWrapper<LISTENER>
{
typedef LLListenerWrapper<LISTENER> super;