c26215c1e5
Save state basics, including adding PBD::ID to the delinquents. Compiles but needs to be tested (because I can't get the whole thing to compile on OSX due to the Rect problem). git-svn-id: svn://localhost/ardour2/branches/undo@769 d708f5d6-7413-0410-9779-e7cbd77b26cf
11 lines
219 B
C++
11 lines
219 B
C++
#include <pbd/command.h>
|
|
#include <pbd/xml++.h>
|
|
|
|
|
|
XMLNode &Command::get_state()
|
|
{
|
|
XMLNode *node = new XMLNode ("Command");
|
|
node->add_content("WARNING: Somebody forgot to subclass Command.");
|
|
return *node;
|
|
}
|