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