#ifndef __libardour_jack_connection_h__ #define __libardour_jack_connection_h__ #include #include #include "pbd/signals.h" namespace ARDOUR { class JackConnection { public: JackConnection (const std::string& client_name, const std::string& session_uuid); ~JackConnection (); const std::string& client_name() const { return _client_name; } int open (); int close (); bool connected () const { return _jack != 0; } jack_client_t* jack() const { return _jack; } PBD::Signal0 Connected; PBD::Signal1 Disconnected; void halted_callback (); void halted_info_callback (jack_status_t, const char*); static bool in_control() { return _in_control; } private: jack_client_t* volatile _jack; std::string _client_name; std::string session_uuid; static bool _in_control; }; } // namespace #endif /* __libardour_jack_connection_h__ */