summaryrefslogtreecommitdiffstats
path: root/raul/TimeSlice.hpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2011-05-20 00:33:22 +0000
committerDavid Robillard <d@drobilla.net>2011-05-20 00:33:22 +0000
commitbed446e569b815ebb81e8866579a8abcda77358a (patch)
tree325e59b693f8d7b10a7036bf7172701d91c8e4cd /raul/TimeSlice.hpp
parent3be36824924e886802b495c2131b412277aa5421 (diff)
downloadraul-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/TimeSlice.hpp')
-rw-r--r--raul/TimeSlice.hpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/raul/TimeSlice.hpp b/raul/TimeSlice.hpp
index 5e7613e..f75f7fd 100644
--- a/raul/TimeSlice.hpp
+++ b/raul/TimeSlice.hpp
@@ -21,8 +21,7 @@
#include <cassert>
#include <cmath>
-#include <boost/utility.hpp>
-
+#include "raul/Noncopyable.hpp"
#include "raul/TimeStamp.hpp"
namespace Raul {
@@ -47,7 +46,7 @@ namespace Raul {
*
* \ingroup raul
*/
-class TimeSlice : public boost::noncopyable {
+class TimeSlice : public Noncopyable {
public:
TimeSlice(uint32_t rate, uint32_t ppqn, double bpm)
: _tick_rate(rate)