aboutsummaryrefslogtreecommitdiffstats
path: root/src/db/SimpleDatabasePlugin.hxx
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2013-01-02 23:06:20 +0100
committerMax Kellermann <max@duempel.org>2013-01-03 01:10:47 +0100
commit3e8047e5831b4cc7dabae596746066698ad7c8cd (patch)
tree51cf8e3cc3b5b373f11ffbd6d7c0b34b3c0acb6c /src/db/SimpleDatabasePlugin.hxx
parent440ac51cf0250904813dfc9398ca8c9e6467328f (diff)
downloadmpd-3e8047e5831b4cc7dabae596746066698ad7c8cd.tar.gz
mpd-3e8047e5831b4cc7dabae596746066698ad7c8cd.tar.xz
mpd-3e8047e5831b4cc7dabae596746066698ad7c8cd.zip
Directory: rename struct directory to Directory
Diffstat (limited to 'src/db/SimpleDatabasePlugin.hxx')
-rw-r--r--src/db/SimpleDatabasePlugin.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/db/SimpleDatabasePlugin.hxx b/src/db/SimpleDatabasePlugin.hxx
index 4de39b46c..789dcdae9 100644
--- a/src/db/SimpleDatabasePlugin.hxx
+++ b/src/db/SimpleDatabasePlugin.hxx
@@ -28,12 +28,12 @@
#include <time.h>
-struct directory;
+struct Directory;
class SimpleDatabase : public Database {
std::string path;
- struct directory *root;
+ Directory *root;
time_t mtime;
@@ -43,7 +43,7 @@ class SimpleDatabase : public Database {
public:
gcc_pure
- struct directory *GetRoot() {
+ Directory *GetRoot() {
assert(root != NULL);
return root;
@@ -90,7 +90,7 @@ protected:
bool Load(GError **error_r);
gcc_pure
- const struct directory *LookupDirectory(const char *uri) const;
+ const Directory *LookupDirectory(const char *uri) const;
};
extern const DatabasePlugin simple_db_plugin;