[beast: 39/57] EBEAST: adjust for having 'Aida' as independent toplevel namespace



commit 5c09bc2d69a154e0bdc93ef4442ecdf2727ec942
Author: Tim Janik <timj gnu org>
Date:   Mon Jul 17 11:49:56 2017 +0200

    EBEAST: adjust for having 'Aida' as independent toplevel namespace
    
    Signed-off-by: Tim Janik <timj gnu org>

 ebeast/v8bse/nodemodule.cc |   10 ++++------
 1 files changed, 4 insertions(+), 6 deletions(-)
---
diff --git a/ebeast/v8bse/nodemodule.cc b/ebeast/v8bse/nodemodule.cc
index 87dd49d..1e39fb4 100644
--- a/ebeast/v8bse/nodemodule.cc
+++ b/ebeast/v8bse/nodemodule.cc
@@ -5,8 +5,6 @@
 #include <v8pp/class.hpp>
 #include <v8pp/convert.hpp>
 
-namespace Aida = Rapicorn::Aida;
-
 // == RemoteHandle Wrapping ==
 /* NOTE: A RemoteHandle is a smart pointer to a complex C++ object (possibly behind a thread boundary),
  * so multiple RemoteHandle objects can point to the same C++ object. There are a couple ways that a
@@ -30,7 +28,7 @@ namespace Aida = Rapicorn::Aida;
  */
 
 /// Function to wrap a RemoteHandle derived type via v8pp::class_<>::import_external().
-typedef v8::Local<v8::Object> (*AidaRemoteHandleWrapper) (v8::Isolate *const, Rapicorn::Aida::RemoteHandle);
+typedef v8::Local<v8::Object> (*AidaRemoteHandleWrapper) (v8::Isolate *const, Aida::RemoteHandle);
 
 /// Default implementation to wrap a RemoteHandle derived type via v8pp::class_<>::import_external().
 template<class Native> static v8::Local<v8::Object>
@@ -199,9 +197,9 @@ struct convert_AidaSequence
 static V8stub *bse_v8stub = NULL;
 
 // event loop integration
-static uv_poll_t                         bse_uv_watcher;
-static Rapicorn::Aida::ClientConnectionP bse_client_connection;
-static Bse::ServerH                      bse_server;
+static uv_poll_t               bse_uv_watcher;
+static Aida::ClientConnectionP bse_client_connection;
+static Bse::ServerH            bse_server;
 
 // register bindings and start Bse
 static void


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]