r229@gwythaint (orig r769): fugalh | 2006-08-09 08:15:05 -0600
[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 }