summaryrefslogtreecommitdiff
path: root/libs/pbd/pbd/configuration.h
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2014-12-22 18:53:19 -0500
committerPaul Davis <paul@linuxaudiosystems.com>2014-12-22 19:48:30 -0500
commitd854c5d93c71d3d607dd22970f1a06f078f350ea (patch)
treed46315ae0cee03c6cfcbc9713af0bea34bfd6652 /libs/pbd/pbd/configuration.h
parent1f0fbea6285b5390c23c44233d55d15a4cbe9cd8 (diff)
move ARDOUR::Configuration and ARDOUR::ConfigVariable into libpbd
Diffstat (limited to 'libs/pbd/pbd/configuration.h')
-rw-r--r--libs/pbd/pbd/configuration.h49
1 files changed, 49 insertions, 0 deletions
diff --git a/libs/pbd/pbd/configuration.h b/libs/pbd/pbd/configuration.h
new file mode 100644
index 0000000000..6e3f6ca434
--- /dev/null
+++ b/libs/pbd/pbd/configuration.h
@@ -0,0 +1,49 @@
+/*
+ Copyright (C) 2009 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
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+
+*/
+
+#ifndef __libpbd_configuration_h__
+#define __libpbd_configuration_h__
+
+#include <boost/function.hpp>
+#include "pbd/signals.h"
+#include "pbd/stateful.h"
+#include "pbd/configuration_variable.h"
+
+class XMLNode;
+
+namespace PBD {
+
+class LIBPBD_API Configuration : public PBD::Stateful
+{
+ public:
+ Configuration() {}
+ virtual ~Configuration() {}
+
+ virtual void map_parameters (boost::function<void (std::string)>&) = 0;
+ virtual int set_state (XMLNode const &, int) = 0;
+ virtual XMLNode & get_state () = 0;
+ virtual XMLNode & get_variables () = 0;
+ virtual void set_variables (XMLNode const &) = 0;
+
+ PBD::Signal1<void,std::string> ParameterChanged;
+};
+
+} // namespace PBD
+
+#endif /* __libpbd_configuration_h__ */