summaryrefslogtreecommitdiff
path: root/libs/pbd/pbd/stateful_diff_command.h
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2010-03-02 00:00:00 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2010-03-02 00:00:00 +0000
commitdb8b575c30845bafc34b87bacd52129c95d1c478 (patch)
tree7a521b7795cc6cc4e41d717a0feabd1aefb83e1f /libs/pbd/pbd/stateful_diff_command.h
parent3540594dc53137eb9e857f9e3c1309382a6d7bef (diff)
the mega-properties/SequenceProperty patch. split is broken at present (right hand starts has start-in-source of zero)
git-svn-id: svn://localhost/ardour2/branches/3.0@6718 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/pbd/pbd/stateful_diff_command.h')
-rw-r--r--libs/pbd/pbd/stateful_diff_command.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/libs/pbd/pbd/stateful_diff_command.h b/libs/pbd/pbd/stateful_diff_command.h
index 43efed445d..cab1ae40cf 100644
--- a/libs/pbd/pbd/stateful_diff_command.h
+++ b/libs/pbd/pbd/stateful_diff_command.h
@@ -28,6 +28,7 @@ namespace PBD
{
class Stateful;
+class PropertyList;
/** A Command which stores its action as the differences between the before and after
* state of a Stateful object.
@@ -46,8 +47,8 @@ public:
private:
boost::weak_ptr<Stateful> _object; ///< the object in question
- XMLNode* _before; ///< XML node containing the previous values of XML properties which changed
- XMLNode* _after; ///< XML node containing the new values of XML properties which changed
+ PBD::PropertyList* _before; ///< its (partial) state before the command
+ PBD::PropertyList* _after; ///< its (partial) state after the operation
};
};