diff options
author | Max Kellermann <max@duempel.org> | 2014-02-05 17:03:43 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2014-02-05 18:53:51 +0100 |
commit | 0ba1b73395dc7beaa27ed9bb07636970243b76e6 (patch) | |
tree | ce55bfc2eff1cf7fbcd8d2cc02e85bf2e6b53c46 /src/storage/LocalStorage.cxx | |
parent | 4c995eb49873eac081486a94c6ed8db566248563 (diff) | |
download | mpd-0ba1b73395dc7beaa27ed9bb07636970243b76e6.tar.gz mpd-0ba1b73395dc7beaa27ed9bb07636970243b76e6.tar.xz mpd-0ba1b73395dc7beaa27ed9bb07636970243b76e6.zip |
storage: add abstract interface
Prepare for the plugin interface.
Diffstat (limited to '')
-rw-r--r-- | src/storage/LocalStorage.cxx | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/storage/LocalStorage.cxx b/src/storage/LocalStorage.cxx index a229b3fe7..f0a1726e0 100644 --- a/src/storage/LocalStorage.cxx +++ b/src/storage/LocalStorage.cxx @@ -81,14 +81,6 @@ LocalStorage::MapFS(const char *uri_utf8) const return MapFS(uri_utf8, IgnoreError()); } -AllocatedPath -LocalStorage::MapChildFS(const char *uri_utf8, - const char *child_utf8) const -{ - const auto uri2 = PathTraitsUTF8::Build(uri_utf8, child_utf8); - return MapFS(uri2.c_str()); -} - bool LocalStorage::GetInfo(const char *uri_utf8, bool follow, FileInfo &info, Error &error) |