1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
#ifndef MYTHFS_BYTITLEDIRECTORY_H #define MYTHFS_BYTITLEDIRECTORY_H #include "groupingDirectory.h" namespace MythFS { class ByDateDirectory : public GroupingDirectory<std::string> { protected: virtual std::string attribute(const MythFS::RecordedPtr &) const; }; } #endif