diff options
Diffstat (limited to 'mythfs/service/inodes/byTitleDirectory.h')
-rw-r--r-- | mythfs/service/inodes/byTitleDirectory.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/mythfs/service/inodes/byTitleDirectory.h b/mythfs/service/inodes/byTitleDirectory.h index e9883d1..2d88b80 100644 --- a/mythfs/service/inodes/byTitleDirectory.h +++ b/mythfs/service/inodes/byTitleDirectory.h @@ -5,9 +5,12 @@ namespace MythFS { class ByTitleDirectory : public GroupingDirectory<std::string> { + public: + ByTitleDirectory(DBPrx db); protected: - virtual std::string attribute(const MythFS::RecordedPtr &) const; + std::string attribute(const MythFS::RecordedPtr &) const override; + PointerType getChild(const std::string &) const override; }; } |