From ac3e250ab59ddf92192853a65e049f62efd47b05 Mon Sep 17 00:00:00 2001
From: David Robillard <d@drobilla.net>
Date: Sat, 18 Dec 2010 20:39:56 +0000
Subject: Remove Raul::Stateful (which never really belonged in Raul anyway).

git-svn-id: http://svn.drobilla.net/lad/trunk/raul@2766 a436a847-0d15-0410-975c-d299462d15a1
---
 raul/AtomRDF.hpp  | 11 ++++++-----
 raul/Stateful.hpp | 42 ------------------------------------------
 wscript           |  4 ++--
 3 files changed, 8 insertions(+), 49 deletions(-)
 delete mode 100644 raul/Stateful.hpp

diff --git a/raul/AtomRDF.hpp b/raul/AtomRDF.hpp
index 6691187..d9373bc 100644
--- a/raul/AtomRDF.hpp
+++ b/raul/AtomRDF.hpp
@@ -18,16 +18,17 @@
 #ifndef RAUL_ATOM_RDF_HPP
 #define RAUL_ATOM_RDF_HPP
 
+#include <cmath>
 #include <cstring>
-#include <string>
 #include <sstream>
-#include <cmath>
+#include <string>
 #include <utility>
-#include "raul/log.hpp"
+
 #include "raul/Atom.hpp"
+#include "raul/log.hpp"
+#include "redlandmm/Model.hpp"
 #include "redlandmm/Node.hpp"
 #include "redlandmm/World.hpp"
-#include "redlandmm/Model.hpp"
 
 #define CUC(x) ((const unsigned char*)(x))
 
@@ -35,7 +36,7 @@ namespace Raul {
 
 /** Conversion between Raul Atoms and Redlandmm RDF nodes.
  * This code (in header raul/AtomRDF.hpp) depends on redlandmm, only apps
- * which directly depend on both raul and liblo should include it.
+ * which directly depend on both raul and redlandmm should include it.
  */
 namespace AtomRDF {
 
diff --git a/raul/Stateful.hpp b/raul/Stateful.hpp
deleted file mode 100644
index 256ed91..0000000
--- a/raul/Stateful.hpp
+++ /dev/null
@@ -1,42 +0,0 @@
-/* This file is part of Raul.
- * Copyright (C) 2007-2009 David Robillard <http://drobilla.net>
- *
- * Raul 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.
- *
- * Raul 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 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.,
- * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
- */
-
-#ifndef STATEFUL_H
-#define STATEFUL_H
-
-#include "redlandmm/Model.hpp"
-
-namespace Raul {
-
-
-class Stateful {
-public:
-	virtual ~Stateful() {}
-
-	virtual void write_state(Redland::Model& model) = 0;
-
-	Redland::Node id() const                      { return _id; }
-	void          set_id(const Redland::Node& id) { _id = id; }
-
-protected:
-	Redland::Node _id;
-};
-
-
-} // namespace Raul
-
-#endif // STATEFUL_H
diff --git a/wscript b/wscript
index c1bb892..61ace96 100644
--- a/wscript
+++ b/wscript
@@ -4,7 +4,7 @@ import Options
 import os
 
 # Version of this package (even if built as a child)
-RAUL_VERSION = '0.7.0'
+RAUL_VERSION = '0.8.0'
 
 # Library version (UNIX style major, minor, micro)
 # major increment <=> incompatible changes
@@ -21,7 +21,7 @@ RAUL_VERSION = '0.7.0'
 #   0.6.4 = 7,0,0 (unreleased)
 #   0.6.5 = 8,0,0 (unreleased)
 #   0.6.6 = 9,0,0 (unreleased)
-#   0.7.0 = 9,0,0
+#   0.8.0 = 9,0,0
 RAUL_LIB_VERSION = '9.0.0'
 
 # Variables for 'waf dist'
-- 
cgit v1.2.1