aboutsummaryrefslogtreecommitdiffstats
path: root/src/db/DatabaseListener.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'src/db/DatabaseListener.hxx')
-rw-r--r--src/db/DatabaseListener.hxx8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/db/DatabaseListener.hxx b/src/db/DatabaseListener.hxx
index 4da458866..8b410c2f5 100644
--- a/src/db/DatabaseListener.hxx
+++ b/src/db/DatabaseListener.hxx
@@ -20,6 +20,8 @@
#ifndef MPD_DATABASE_CLIENT_HXX
#define MPD_DATABASE_CLIENT_HXX
+struct LightSong;
+
/**
* An object that listens to events from the #Database.
*
@@ -33,6 +35,12 @@ public:
* runs the #EventLoop.
*/
virtual void OnDatabaseModified() = 0;
+
+ /**
+ * During database update, a song is about to be removed from
+ * the database because the file has disappeared.
+ */
+ virtual void OnDatabaseSongRemoved(const LightSong &song) = 0;
};
#endif