revert incorrect include path changes and removal of export macros for two libardour...
[ardour.git] / libs / pbd / pbd / memento_command.h
index 6560780f3c6df6e02133a04b5a6e35aabb670a2e..f6d11a0b33c736725eca5008514c3a472fef807b 100644 (file)
@@ -51,7 +51,7 @@
  *  can do `just-in-time' binding from the crossfade ID.
  */
 template <class obj_T>
-class LIBPBD_API MementoCommandBinder : public PBD::Destructible
+class /*LIBPBD_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 obj_T>
-class LIBPBD_API SimpleMementoCommandBinder : public MementoCommandBinder<obj_T>
+class /*LIBPBD_API*/ SimpleMementoCommandBinder : public MementoCommandBinder<obj_T>
 {
 public:
        SimpleMementoCommandBinder (obj_T& o)
@@ -100,7 +100,7 @@ private:
  * memento, and redo is restoring the after memento.
  */
 template <class obj_T>
-class LIBPBD_API MementoCommand : public Command
+class /*LIBPBD_API*/ MementoCommand : public Command
 {
 public:
        MementoCommand (obj_T& a_object, XMLNode* a_before, XMLNode* a_after)