#include <oilfltrs.h>
Inheritance diagram for AdobeColourTableOILFilter:
Public Member Functions | |
AdobeColourTableOILFilter (Filter *pFilter) | |
Sets up the list of filename extensions that this filter understands. | |
INT32 | HowCompatible (PathName &Filename) |
Retuns a compatibility number based on the file extension. |
Definition at line 490 of file oilfltrs.h.
|
Sets up the list of filename extensions that this filter understands.
Definition at line 998 of file oilfltrs.cpp. 00998 : OILFilter(pFilter) 00999 { 01000 FilterName.Load(_R(IDT_FILTERNAME_ADOBECOLOURTABLE)); 01001 FilterExt.Load(_R(IDT_FILTEREXT_ADOBECOLOURTABLE)); 01002 }
|
|
Retuns a compatibility number based on the file extension.
Definition at line 1011 of file oilfltrs.cpp. 01012 { 01013 PORTNOTE("byteorder", "TODO: Check byte ordering") 01014 if (DoesExtensionOfPathNameMatch(&Filename)) 01015 return 9; 01016 else 01017 return 0; 01018 }
|