From f5ae1ce00b85699291a7cdf9782574e70a8c28f5 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Sun, 19 Jan 2014 10:51:34 +0100 Subject: LightSong: new class to be used by DatabasePlugin callbacks Detach the Song class completely from the public API, only to be used by SimpleDatabase and the update thread. --- src/db/LazyDatabase.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/db/LazyDatabase.cxx') diff --git a/src/db/LazyDatabase.cxx b/src/db/LazyDatabase.cxx index 0718c3dcd..6a01ffb82 100644 --- a/src/db/LazyDatabase.cxx +++ b/src/db/LazyDatabase.cxx @@ -51,7 +51,7 @@ LazyDatabase::Close() } } -Song * +const LightSong * LazyDatabase::GetSong(const char *uri, Error &error) const { return EnsureOpen(error) @@ -60,7 +60,7 @@ LazyDatabase::GetSong(const char *uri, Error &error) const } void -LazyDatabase::ReturnSong(Song *song) const +LazyDatabase::ReturnSong(const LightSong *song) const { assert(open); -- cgit v1.2.3