summaryrefslogtreecommitdiffstats
path: root/src/server/Buffer.hpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2012-04-23 02:32:33 +0000
committerDavid Robillard <d@drobilla.net>2012-04-23 02:32:33 +0000
commit8d1e92ab0655d4ede8ea17358d678b3a5aabc1bc (patch)
tree2dff94cd90ca026f2f4e0e490da03762cc924680 /src/server/Buffer.hpp
parent8601ab0fe6c5782cc38de48576eb2f7c4fb2ccef (diff)
downloadingen-8d1e92ab0655d4ede8ea17358d678b3a5aabc1bc.tar.gz
ingen-8d1e92ab0655d4ede8ea17358d678b3a5aabc1bc.tar.bz2
ingen-8d1e92ab0655d4ede8ea17358d678b3a5aabc1bc.zip
Localise buffer reference stuff.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@4252 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/server/Buffer.hpp')
-rw-r--r--src/server/Buffer.hpp7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/server/Buffer.hpp b/src/server/Buffer.hpp
index 11436d9c..fcd6fe65 100644
--- a/src/server/Buffer.hpp
+++ b/src/server/Buffer.hpp
@@ -44,8 +44,6 @@ class Buffer : public boost::noncopyable, public Raul::Deletable
public:
Buffer(BufferFactory& bufs, LV2_URID type, uint32_t capacity);
- typedef boost::intrusive_ptr<Buffer> Ref;
-
virtual void clear();
virtual void resize(uint32_t size);
virtual void copy(Context& context, const Buffer* src);
@@ -94,9 +92,4 @@ private:
} // namespace Server
} // namespace Ingen
-namespace boost {
-inline void intrusive_ptr_add_ref(Ingen::Server::Buffer* b) { b->ref(); }
-inline void intrusive_ptr_release(Ingen::Server::Buffer* b) { b->deref(); }
-}
-
#endif // INGEN_ENGINE_BUFFER_HPP