diff options
author | Max Kellermann <max@duempel.org> | 2015-02-28 20:50:15 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2015-02-28 23:00:26 +0100 |
commit | 2d06a8e8804b1db64c7564532362eecdf7ad81d3 (patch) | |
tree | 3083cbd252fa36f0dd31269b7a3be84b5acb4d1e /src/storage/StorageInterface.hxx | |
parent | e1a434edbc84528fcd85e337ebf713c75124ba2b (diff) | |
download | mpd-2d06a8e8804b1db64c7564532362eecdf7ad81d3.tar.gz mpd-2d06a8e8804b1db64c7564532362eecdf7ad81d3.tar.xz mpd-2d06a8e8804b1db64c7564532362eecdf7ad81d3.zip |
storage/FileInfo: rename to StorageFileInfo
Diffstat (limited to 'src/storage/StorageInterface.hxx')
-rw-r--r-- | src/storage/StorageInterface.hxx | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/storage/StorageInterface.hxx b/src/storage/StorageInterface.hxx index 7e73dd34b..4435bbf91 100644 --- a/src/storage/StorageInterface.hxx +++ b/src/storage/StorageInterface.hxx @@ -25,7 +25,7 @@ #include <string> -struct FileInfo; +struct StorageFileInfo; class AllocatedPath; class Error; @@ -36,7 +36,8 @@ public: virtual ~StorageDirectoryReader() {} virtual const char *Read() = 0; - virtual bool GetInfo(bool follow, FileInfo &info, Error &error) = 0; + virtual bool GetInfo(bool follow, StorageFileInfo &info, + Error &error) = 0; }; class Storage { @@ -45,7 +46,8 @@ public: Storage(const Storage &) = delete; virtual ~Storage() {} - virtual bool GetInfo(const char *uri_utf8, bool follow, FileInfo &info, + virtual bool GetInfo(const char *uri_utf8, bool follow, + StorageFileInfo &info, Error &error) = 0; virtual StorageDirectoryReader *OpenDirectory(const char *uri_utf8, |