refactor: split PlayQueue from header-only into .hpp/.cpp pair

Move all method implementations from playqueue.hpp into a new
playqueue.cpp, keeping only declarations and trivial inline getters
in the header. No logic or behavior changes.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
joren
2026-03-31 10:58:06 +02:00
parent e9a9077ece
commit dea16676ce
3 changed files with 262 additions and 215 deletions

View File

@@ -6,8 +6,9 @@ target_sources(qobuz-qt PRIVATE
mainwindow.hpp
mainwindow.cpp
# Queue (header-only)
# Queue
playqueue.hpp
playqueue.cpp
# Backend (Qt wrapper around Rust FFI)
backend/qobuzbackend.hpp