Merged with trunk R776

git-svn-id: svn://localhost/ardour2/branches/midi@777 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
David Robillard 2006-08-10 01:22:45 +00:00
parent 38c7d34d8c
commit ab6f1ed9ba
110 changed files with 7360 additions and 785 deletions

10
libs/pbd/command.cc Normal file
View file

@ -0,0 +1,10 @@
#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;
}