From 2d06a8e8804b1db64c7564532362eecdf7ad81d3 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Sat, 28 Feb 2015 20:50:15 +0100 Subject: storage/FileInfo: rename to StorageFileInfo --- src/storage/StorageInterface.hxx | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'src/storage/StorageInterface.hxx') 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 -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, -- cgit v1.2.3