add an plugin API to query generic-gui grid-layout
[ardour.git] / libs / ardour / ardour / user_bundle.h
index 6d197450c3f038f488309937dc0ba95dfd3d1063..4ff435ef35922ac1304b952f390d959105c07c46 100644 (file)
@@ -1,5 +1,5 @@
 /*
-    Copyright (C) 2007 Paul Davis 
+    Copyright (C) 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
@@ -21,7 +21,7 @@
 #define __ardour_user_bundle_h__
 
 #include <vector>
-#include <glibmm/thread.h>
+#include <glibmm/threads.h>
 #include "pbd/stateful.h"
 #include "ardour/bundle.h"
 
@@ -29,18 +29,18 @@ namespace ARDOUR {
 
 class Session;
 
-class UserBundle : public Bundle, public PBD::Stateful {
+class LIBARDOUR_API UserBundle : public Bundle, public PBD::Stateful {
 
   public:
        UserBundle (std::string const &);
        UserBundle (XMLNode const &, bool);
 
        XMLNode& get_state ();
-       
+
   private:
-       int set_state (XMLNode const &);
+       int set_state (XMLNode const &, int version);
 };
 
 }
-       
+
 #endif