Add a time-profiler with statistics
[ardour.git] / libs / pbd / command.cc
index f84d99491f75fb76d31e3095a2186668fb5650c8..22ec8d8cc7cafd3357c33076ef1f8a5219ce1439 100644 (file)
@@ -1,5 +1,5 @@
 /*
-    Copyright (C) 2000-2007 Paul Davis 
+    Copyright (C) 2000-2007 Paul Davis
 
     This program is free software; you can redistribute it and/or modify
     it under the terms of the GNU General Public License as published by
 
 */
 
-#include <pbd/command.h>
-#include <pbd/xml++.h>
-
+#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;
+       XMLNode *node = new XMLNode ("Command");
+       node->add_content("WARNING: Somebody forgot to subclass Command.");
+       return *node;
 }