summaryrefslogtreecommitdiffstats
path: root/raul/Array.hpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2012-08-15 17:50:17 +0000
committerDavid Robillard <d@drobilla.net>2012-08-15 17:50:17 +0000
commit55603c281a49070bd941e79093cc20a144f9ee4a (patch)
tree33a532618678dfd8d2ab90848789bf5e74a60cee /raul/Array.hpp
parent2118d961d97a1e454ee5391785b700d70f22f387 (diff)
downloadraul-55603c281a49070bd941e79093cc20a144f9ee4a.tar.gz
raul-55603c281a49070bd941e79093cc20a144f9ee4a.tar.bz2
raul-55603c281a49070bd941e79093cc20a144f9ee4a.zip
Rewrite Raul::Maid and eliminate Raul:List.
git-svn-id: http://svn.drobilla.net/lad/trunk/raul@4702 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'raul/Array.hpp')
-rw-r--r--raul/Array.hpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/raul/Array.hpp b/raul/Array.hpp
index b750801..96797d4 100644
--- a/raul/Array.hpp
+++ b/raul/Array.hpp
@@ -17,10 +17,11 @@
#ifndef RAUL_ARRAY_HPP
#define RAUL_ARRAY_HPP
+#include <algorithm>
#include <cassert>
#include <cstddef>
-#include <algorithm>
-#include "Deletable.hpp"
+
+#include "raul/Disposable.hpp"
namespace Raul {
@@ -32,7 +33,7 @@ namespace Raul {
* \ingroup raul
*/
template <class T>
-class Array : public Deletable
+class Array : public Disposable
{
public:
explicit Array(size_t size = 0) : _size(size), _elems(NULL) {