diff options
author | David Robillard <d@drobilla.net> | 2011-05-20 00:33:22 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2011-05-20 00:33:22 +0000 |
commit | bed446e569b815ebb81e8866579a8abcda77358a (patch) | |
tree | 325e59b693f8d7b10a7036bf7172701d91c8e4cd /raul/Maid.hpp | |
parent | 3be36824924e886802b495c2131b412277aa5421 (diff) | |
download | raul-bed446e569b815ebb81e8866579a8abcda77358a.tar.gz raul-bed446e569b815ebb81e8866579a8abcda77358a.tar.bz2 raul-bed446e569b815ebb81e8866579a8abcda77358a.zip |
Make boost dependency optional. Note Raul compiled with --cpp0x is NOT compatible with Raul compiled without it.
git-svn-id: http://svn.drobilla.net/lad/trunk/raul@3289 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'raul/Maid.hpp')
-rw-r--r-- | raul/Maid.hpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/raul/Maid.hpp b/raul/Maid.hpp index 3eef6c9..a90bf48 100644 --- a/raul/Maid.hpp +++ b/raul/Maid.hpp @@ -18,11 +18,11 @@ #ifndef RAUL_MAID_HPP #define RAUL_MAID_HPP -#include <boost/utility.hpp> -#include "raul/SharedPtr.hpp" -#include "raul/SRSWQueue.hpp" #include "raul/Deletable.hpp" #include "raul/List.hpp" +#include "raul/Noncopyable.hpp" +#include "raul/SRSWQueue.hpp" +#include "raul/SharedPtr.hpp" namespace Raul { @@ -42,7 +42,7 @@ namespace Raul { * * \ingroup raul */ -class Maid : boost::noncopyable +class Maid : Noncopyable { public: explicit Maid(size_t size); |