From c1a540f34e08a217eb3ffa030205d202fda648f6 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Sat, 1 Mar 2014 18:59:37 -0500 Subject: [PATCH] use template export forms for MemementoCommand --- libs/pbd/pbd/memento_command.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/libs/pbd/pbd/memento_command.h b/libs/pbd/pbd/memento_command.h index f6d11a0b33..d22561ab21 100644 --- a/libs/pbd/pbd/memento_command.h +++ b/libs/pbd/pbd/memento_command.h @@ -51,7 +51,7 @@ * can do `just-in-time' binding from the crossfade ID. */ template -class /*LIBPBD_API*/ MementoCommandBinder : public PBD::Destructible +class LIBPBD_TEMPLATE_API MementoCommandBinder : public PBD::Destructible { public: /** @return Stateful object to operate on */ @@ -68,7 +68,7 @@ public: /** A simple MementoCommandBinder which binds directly to an object */ template -class /*LIBPBD_API*/ SimpleMementoCommandBinder : public MementoCommandBinder +class LIBPBD_TEMPLATE_API SimpleMementoCommandBinder : public MementoCommandBinder { public: SimpleMementoCommandBinder (obj_T& o) @@ -100,7 +100,7 @@ private: * memento, and redo is restoring the after memento. */ template -class /*LIBPBD_API*/ MementoCommand : public Command +class LIBPBD_TEMPLATE_API MementoCommand : public Command { public: MementoCommand (obj_T& a_object, XMLNode* a_before, XMLNode* a_after)