#include <oilfltrs.h>
Inheritance diagram for AdobeColourSwatchOILFilter:
Public Member Functions | |
AdobeColourSwatchOILFilter (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 507 of file oilfltrs.h.
|
Sets up the list of filename extensions that this filter understands.
Definition at line 1027 of file oilfltrs.cpp. 01027 : OILFilter(pFilter) 01028 { 01029 FilterName.Load(_R(IDT_FILTERNAME_ADOBECOLOURSWATCH)); 01030 FilterExt.Load(_R(IDT_FILTEREXT_ADOBECOLOURSWATCH)); 01031 }
|
|
Retuns a compatibility number based on the file extension.
Definition at line 1040 of file oilfltrs.cpp. 01041 { 01042 PORTNOTE("byteorder", "TODO: Check byte ordering") 01043 if (DoesExtensionOfPathNameMatch(&Filename)) 01044 return 9; 01045 else 01046 return 0; 01047 }
|