#include <filtrmgr.h>
Public Member Functions | |
FormatEntry (const FileFormatID ID, FileFormat *const pFormat, const FilterManager::DESTRUCTION_METHOD DestructMethod) | |
Provides an entry for the FilterManager's database of FileFormats. | |
~FormatEntry () | |
Default constructor deleting associated FilterEntry items. | |
FileFormat * | GetFormat () const |
FileFormatID | GetID () const |
FilterList & | GetFilters () |
FilterManager::DESTRUCTION_METHOD | GetDestructionMethod () const |
Protected Attributes | |
FileFormat * | m_pFormat |
FileFormatID | m_FormatID |
FilterList | m_AssociatedFilters |
FilterManager::DESTRUCTION_METHOD | m_DestructMethod |
Definition at line 259 of file filtrmgr.h.
|
Provides an entry for the FilterManager's database of FileFormats.
Definition at line 605 of file filtrmgr.cpp. 00607 { 00608 m_pFormat = pFormat; 00609 m_FormatID = ID; 00610 m_DestructMethod = DestructMethod; 00611 }
|
|
Default constructor deleting associated FilterEntry items.
Definition at line 624 of file filtrmgr.cpp. 00625 { 00626 GetFilters().DeleteAll(); 00627 }
|
|
Definition at line 273 of file filtrmgr.h. 00274 { return m_DestructMethod; }
|
|
Definition at line 271 of file filtrmgr.h. 00271 { return m_AssociatedFilters; }
|
|
Definition at line 269 of file filtrmgr.h. 00269 { return m_pFormat; }
|
|
Definition at line 270 of file filtrmgr.h. 00270 { return m_FormatID; }
|
|
Definition at line 280 of file filtrmgr.h. |
|
Definition at line 283 of file filtrmgr.h. |
|
Definition at line 279 of file filtrmgr.h. |
|
Definition at line 278 of file filtrmgr.h. |