a32175bd41
Nuke Serializable in favor of Stateful. Got rid of some warnings with stub code. git-svn-id: svn://localhost/ardour2/branches/undo@767 d708f5d6-7413-0410-9779-e7cbd77b26cf
11 lines
159 B
C++
11 lines
159 B
C++
#include <pbd/command.h>
|
|
#include <pbd/xml++.h>
|
|
|
|
|
|
XMLNode &Command::get_state()
|
|
{
|
|
XMLNode *node = new XMLNode ("Command");
|
|
// TODO
|
|
return *node;
|
|
}
|