summaryrefslogtreecommitdiff
path: root/muse2/muse/audioprefetch.h
diff options
context:
space:
mode:
authorOrcan Ogetbil <oget.fedora@gmail.com>2011-10-07 04:23:17 +0000
committerOrcan Ogetbil <oget.fedora@gmail.com>2011-10-07 04:23:17 +0000
commit5367067f7a36dce8a362dcc000d41ac581bffdfe (patch)
tree0407ed68b4470749820b5bc6fb06d43388a83e97 /muse2/muse/audioprefetch.h
parentf16b2037025918e32c5fd90527f76e1102e5ecb9 (diff)
clean residual namespace work. fix python control build.
Diffstat (limited to 'muse2/muse/audioprefetch.h')
-rw-r--r--muse2/muse/audioprefetch.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/muse2/muse/audioprefetch.h b/muse2/muse/audioprefetch.h
index e55251dc..5b34b2cc 100644
--- a/muse2/muse/audioprefetch.h
+++ b/muse2/muse/audioprefetch.h
@@ -26,6 +26,8 @@
#include "thread.h"
+namespace MusECore {
+
//---------------------------------------------------------
// AudioPrefetch
//---------------------------------------------------------
@@ -56,6 +58,10 @@ class AudioPrefetch : public Thread {
bool seekDone() const { return seekCount == 0; }
};
-extern AudioPrefetch* audioPrefetch;
+} // namespace MusECore
+
+namespace MusEGlobal {
+extern MusECore::AudioPrefetch* audioPrefetch;
+}
#endif