Commit 93765fcb authored by Max Kellermann's avatar Max Kellermann

input/{tidal,qobuz}: remove unused list_base_hook

parent b221bd74
......@@ -28,9 +28,7 @@
class QobuzClient;
struct QobuzSession;
class QobuzTrackHandler
: public boost::intrusive::list_base_hook<boost::intrusive::link_mode<boost::intrusive::safe_link>>
{
class QobuzTrackHandler {
public:
virtual void OnQobuzTrackSuccess(std::string url) noexcept = 0;
virtual void OnQobuzTrackError(std::exception_ptr error) noexcept = 0;
......
......@@ -30,9 +30,7 @@
*
* Its methods must be thread-safe.
*/
class TidalTrackHandler
: public boost::intrusive::list_base_hook<boost::intrusive::link_mode<boost::intrusive::safe_link>>
{
class TidalTrackHandler {
public:
virtual void OnTidalTrackSuccess(std::string url) noexcept = 0;
virtual void OnTidalTrackError(std::exception_ptr error) noexcept = 0;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment