mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-06 05:35:47 +01:00
Namespace libwebsocket surface classes
Using the global names-pace for classes named "Json", "TypedValue", "ArdourTransport", "ArdourMixerPlugin" etc is not acceptable.
This commit is contained in:
parent
665e0686e5
commit
af79240c81
27 changed files with 88 additions and 17 deletions
|
|
@ -25,7 +25,10 @@
|
|||
#include "message.h"
|
||||
#include "state.h"
|
||||
|
||||
typedef struct lws* Client;
|
||||
typedef struct lws* Client;
|
||||
|
||||
namespace ArdourSurface {
|
||||
|
||||
typedef std::list<NodeStateMessage> ClientOutputBuffer;
|
||||
|
||||
class ClientContext
|
||||
|
|
@ -59,4 +62,6 @@ private:
|
|||
ClientOutputBuffer _output_buf;
|
||||
};
|
||||
|
||||
} // namespace ArdourSurface
|
||||
|
||||
#endif // _ardour_surface_websockets_client_h_
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue