13
0
livetrax/libs/pbd/command.cc
David Robillard ab6f1ed9ba Merged with trunk R776
git-svn-id: svn://localhost/ardour2/branches/midi@777 d708f5d6-7413-0410-9779-e7cbd77b26cf
2006-08-10 01:22:45 +00:00

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;
}