#include <taglists.h>
Inheritance diagram for EssentialTagList:
Public Member Functions | |
EssentialTagList () | |
void | AddTail (EssentialTagListItem *pItem) |
EssentialTagListItem * | GetHead () |
EssentialTagListItem * | GetNext (EssentialTagListItem *pItem) |
An essential tag is a tag that the importer must understand in order to successfully load the file.
If the importer does not recognise the tag, and it's defined to be essential, the importer should abort the import.
We have no examples of such a tag. This mechanism is in place in case we wish to prevent old importers loading in newer versions of the file format.
Definition at line 235 of file taglists.h.
|
Definition at line 240 of file taglists.h.
|
|
Definition at line 242 of file taglists.h. 00242 { List::AddTail(pItem); };
|
|
Definition at line 243 of file taglists.h. 00243 { return (EssentialTagListItem*)List::GetHead(); }
|
|
Definition at line 244 of file taglists.h. 00244 { return (EssentialTagListItem*)List::GetNext(pItem); }
|