storage/local: move to src/storage/plugins/

This commit is contained in:
Max Kellermann 2014-02-05 19:24:59 +01:00
parent f6682aae77
commit c8c3f20840
4 changed files with 4 additions and 4 deletions

View File

@ -419,7 +419,7 @@ noinst_LIBRARIES += libstorage.a
libstorage_a_SOURCES = \
src/storage/StorageInterface.cxx src/storage/StorageInterface.hxx \
src/storage/LocalStorage.cxx src/storage/LocalStorage.hxx \
src/storage/plugins/LocalStorage.cxx src/storage/plugins/LocalStorage.hxx \
src/storage/FileInfo.hxx
STORAGE_LIBS = libstorage.a

View File

@ -69,7 +69,7 @@
#include "db/DatabaseGlue.hxx"
#include "db/DatabaseSimple.hxx"
#include "db/plugins/SimpleDatabasePlugin.hxx"
#include "storage/LocalStorage.hxx"
#include "storage/plugins/LocalStorage.hxx"
#endif
#ifdef ENABLE_NEIGHBOR_PLUGINS

View File

@ -19,7 +19,7 @@
#include "config.h"
#include "LocalStorage.hxx"
#include "FileInfo.hxx"
#include "storage/FileInfo.hxx"
#include "util/Error.hxx"
#include "fs/FileSystem.hxx"

View File

@ -21,7 +21,7 @@
#define MPD_STORAGE_LOCAL_HXX
#include "check.h"
#include "StorageInterface.hxx"
#include "storage/StorageInterface.hxx"
#include "fs/AllocatedPath.hxx"
#include "fs/DirectoryReader.hxx"