summaryrefslogtreecommitdiff
path: root/libs/fsScan/include/FilesystemScanner.h
diff options
context:
space:
mode:
Diffstat (limited to 'libs/fsScan/include/FilesystemScanner.h')
-rw-r--r--libs/fsScan/include/FilesystemScanner.h19
1 files changed, 6 insertions, 13 deletions
diff --git a/libs/fsScan/include/FilesystemScanner.h b/libs/fsScan/include/FilesystemScanner.h
index b90b50d..51cd44e 100644
--- a/libs/fsScan/include/FilesystemScanner.h
+++ b/libs/fsScan/include/FilesystemScanner.h
@@ -1,25 +1,25 @@
/**
* ======================== legal notice ======================
- *
+ *
* File: FilesystemScanner.h
* Created: 2. Juli 2012, 13
* Author: <a href="mailto:geronimo013@gmx.de">Geronimo</a>
* Project: libfsScan: mediatypes and filesystem scanning
- *
+ *
* CMP - compound media player
- *
+ *
* is a client/server mediaplayer intended to play any media from any workstation
* without the need to export or mount shares. cmps is an easy to use backend
* with a (ready to use) HTML-interface. Additionally the backend supports
* authentication via HTTP-digest authorization.
* cmpc is a client with vdr-like osd-menues.
- *
+ *
* Copyright (c) 2012 Reinhard Mantey, some rights reserved!
* published under Creative Commons by-sa
* For details see http://creativecommons.org/licenses/by-sa/3.0/
- *
+ *
* The cmp project's homepage is at http://projects.vdr-developer.org/projects/cmp
- *
+ *
* --------------------------------------------------------------
*/
#ifndef FILESYSTEMSCANNER_H
@@ -39,17 +39,10 @@ public:
std::map<int, size_t> &Categories(void) { return categories; }
cAbstractMedia *FindMedia(const char *LogicalPath);
void Refresh(void);
-
- void SetBaseDirectory(const char *dir);
void SetMediaFactory(cMediaFactory *factory);
-protected:
- void parseDir(const char *dir, cManagedVector &result);
-
private:
- char *baseDirectory;
size_t fileBufSize;
- struct dirent *dirEntryBuf;
cManagedVector pool;
std::map<int, size_t> categories;
cMediaFactory *mediaFactory;