summaryrefslogtreecommitdiff
path: root/mythfs/service/inodes/byTitleDirectory.h
blob: 2d88b80e7df27e1140ca3317b53aca06bd889458 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef MYTHFS_BYTITLEDIRECTORY_H
#define MYTHFS_BYTITLEDIRECTORY_H

#include "groupingDirectory.h"

namespace MythFS {
	class ByTitleDirectory : public GroupingDirectory<std::string> {
		public:
			ByTitleDirectory(DBPrx db);

		protected:
			std::string attribute(const MythFS::RecordedPtr &) const override;
			PointerType getChild(const std::string &) const override;
	};
}

#endif