diff options
author | David Robillard <d@drobilla.net> | 2009-12-19 21:37:50 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2009-12-19 21:37:50 +0000 |
commit | 1243943529fde4d5ac5d242ec48b971e81499875 (patch) | |
tree | 70857b1009b8b2ef9f8b204f7f45fe3a82007316 /src/Thread.cpp | |
parent | 1072f6bf233939d6101856f6d87f664f34490746 (diff) | |
download | raul-1243943529fde4d5ac5d242ec48b971e81499875.tar.gz raul-1243943529fde4d5ac5d242ec48b971e81499875.tar.bz2 raul-1243943529fde4d5ac5d242ec48b971e81499875.zip |
New ingen module (library, not e.g. LV2 plugin) design.
Much cleaner interface and general usage of Ingen as a library.
git-svn-id: http://svn.drobilla.net/lad/trunk/raul@2314 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/Thread.cpp')
-rw-r--r-- | src/Thread.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Thread.cpp b/src/Thread.cpp index f5ba09f..0449515 100644 --- a/src/Thread.cpp +++ b/src/Thread.cpp @@ -28,7 +28,7 @@ pthread_once_t Thread::_thread_key_once = PTHREAD_ONCE_INIT; pthread_key_t Thread::_thread_key; -Thread::Thread(const string& name) +Thread::Thread(const std::string& name) : _exit_flag(false) , _context(0) , _name(name) @@ -41,7 +41,7 @@ Thread::Thread(const string& name) /** Must be called from thread */ -Thread::Thread(pthread_t thread, const string& name) +Thread::Thread(pthread_t thread, const std::string& name) : _exit_flag(false) , _context(0) , _name(name) |