5b41691c07cae0ff3ad8754f7f901489952e0dc8
[ardour.git] / libs / pbd / command.cc
1 #include <pbd/command.h>
2 #include <pbd/xml++.h>
3
4
5 XMLNode &Command::get_state()
6 {
7     XMLNode *node = new XMLNode ("Command");
8     node->add_content("WARNING: Somebody forgot to subclass Command.");
9     return *node;
10 }