CmdTags: Added implementation notes

This commit is contained in:
Paul Beckingham 2016-03-17 16:44:24 -04:00
parent c22da0c0a4
commit e929e99923

View file

@ -31,6 +31,20 @@
int CmdTags () int CmdTags ()
{ {
std::cout << "# tags\n"; std::cout << "# tags\n";
// TODO Enumerate all data files.
// TODO For each data file.
// TODO For each inclusion.
// TODO Extract tags.
// TODO Add tags to unique set.
// TODO Determine sort order - most recent first?
// TODO Determine sort order - most common first?
// TODO For each tag in set.
// TODO Load metadata.
// TODO Display.
return 0; return 0;
} }