summaryrefslogtreecommitdiff
path: root/libs/fsScan/include
diff options
context:
space:
mode:
Diffstat (limited to 'libs/fsScan/include')
-rw-r--r--libs/fsScan/include/AbstractMedia.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/libs/fsScan/include/AbstractMedia.h b/libs/fsScan/include/AbstractMedia.h
index e101948..573265b 100644
--- a/libs/fsScan/include/AbstractMedia.h
+++ b/libs/fsScan/include/AbstractMedia.h
@@ -54,9 +54,10 @@ public:
const char *MimeType(void) const { return mimeType; }
const char *AbsolutePath(void) const;
ulong LastModified(void) const;
+ const char *LogicalPath(void) const { return logicalPath; }
virtual const char *Name(void) const;
virtual size_t Size(void) const;
- virtual const char *URI(void) const;
+ virtual const char *URI(void) const { return uri; }
virtual void Refresh(void);
///< will be called right before start streaming, so this call is used to
///< determine the real size, number of files, etc.
@@ -74,6 +75,7 @@ private:
SupportedMediaType mediaType;
char *mimeType;
char *uri;
+ char *logicalPath;
cFile keyPath;
};