// // RNBO_ParameterEventQueue.h // Created by Timothy Place on 11.08.15. // #ifndef _RNBO_ParameterEventQueue_h #define _RNBO_ParameterEventQueue_h #include "RNBO_EventQueue.h" #include "RNBO_ServiceNotification.h" namespace RNBO { using ParameterEventQueue = EventQueue>; using ParameterEventQueuePtr = std::unique_ptr>; #if RNBO_MULTIPRODUCER_QUEUE_SUPPORTED using SafeParameterEventQueue = EventQueue>; #else using SafeParameterEventQueue = ParameterEventQueue; // hack, TODO fix this! #endif using ServiceNotificationQueue = EventQueue>; using MidiEventQueue = EventQueue>; } // namespace RNBO #endif // _RNBO_ParameterEventQueue_h