summaryrefslogtreecommitdiffstats
path: root/raul/Array.hpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2013-01-12 23:38:03 +0000
committerDavid Robillard <d@drobilla.net>2013-01-12 23:38:03 +0000
commit4a05f65f51fca38b774f2bd5cda8e665c86f3917 (patch)
tree3333ca8e58cf48bffdfa16fadfa9905f56403c78 /raul/Array.hpp
parentfaad203b6ae046fb3c7e6f7f2a471787163d09b4 (diff)
downloadraul-4a05f65f51fca38b774f2bd5cda8e665c86f3917.tar.gz
raul-4a05f65f51fca38b774f2bd5cda8e665c86f3917.tar.bz2
raul-4a05f65f51fca38b774f2bd5cda8e665c86f3917.zip
Remove Raul::SharedPtr and switch to std::shared_ptr.
Use project local short type aliases for shared_ptr and friends. Move Raul::Disposable and Raul::Manageable into Raul::Maid. Use sets to store machina nodes and edges to avoid O(n) searches. git-svn-id: http://svn.drobilla.net/lad/trunk/raul@4939 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'raul/Array.hpp')
-rw-r--r--raul/Array.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/raul/Array.hpp b/raul/Array.hpp
index 485f3cf..5dab626 100644
--- a/raul/Array.hpp
+++ b/raul/Array.hpp
@@ -21,7 +21,7 @@
#include <cassert>
#include <cstddef>
-#include "raul/Disposable.hpp"
+#include "raul/Maid.hpp"
namespace Raul {
@@ -33,7 +33,7 @@ namespace Raul {
* \ingroup raul
*/
template <class T>
-class Array : public Disposable
+class Array : public Maid::Disposable
{
public:
explicit Array(size_t size = 0)