mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-10 08:36:32 +01:00
11 lines
151 B
C++
11 lines
151 B
C++
|
|
#include <pbd/command.h>
|
||
|
|
|
||
|
|
class XMLNode;
|
||
|
|
|
||
|
|
XMLNode &Command::serialize()
|
||
|
|
{
|
||
|
|
XMLNode *node = new XMLNode ("Command");
|
||
|
|
// TODO
|
||
|
|
return *node;
|
||
|
|
}
|