aboutsummaryrefslogtreecommitdiffstats
path: root/src/db/DatabaseSimple.hxx
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2014-02-04 08:37:05 +0100
committerMax Kellermann <max@duempel.org>2014-02-04 09:05:32 +0100
commitd76b6f878e06d052ab54415783c39997939349e0 (patch)
tree954eb15c6a1f8eaa033285df551f355f6973d758 /src/db/DatabaseSimple.hxx
parentf25ef8d6825c03aec4569c6ad4b9bfb3a9f5d78d (diff)
downloadmpd-d76b6f878e06d052ab54415783c39997939349e0.tar.gz
mpd-d76b6f878e06d052ab54415783c39997939349e0.tar.xz
mpd-d76b6f878e06d052ab54415783c39997939349e0.zip
db/update/Service: add SimpleDatabase reference
Don't use the global variables from the DatabaseSimple library.
Diffstat (limited to '')
-rw-r--r--src/db/DatabaseSimple.hxx21
1 files changed, 3 insertions, 18 deletions
diff --git a/src/db/DatabaseSimple.hxx b/src/db/DatabaseSimple.hxx
index 5d5680d43..c0f84ab79 100644
--- a/src/db/DatabaseSimple.hxx
+++ b/src/db/DatabaseSimple.hxx
@@ -22,12 +22,9 @@
#include "Compiler.h"
-#include <sys/time.h>
-
struct config_param;
struct Directory;
-struct db_selection;
-struct db_visitor;
+class SimpleDatabase;
class Error;
/**
@@ -38,21 +35,9 @@ class Error;
bool
db_is_simple(void);
-/**
- * Returns the root directory object. Returns NULL if there is no
- * configured music directory.
- *
- * May only be used if db_is_simple() returns true.
- */
gcc_pure
-Directory *
-db_get_root(void);
-
-/**
- * May only be used if db_is_simple() returns true.
- */
-bool
-db_save(Error &error);
+SimpleDatabase &
+db_get_simple();
/**
* Returns true if there is a valid database file on the disk.