#include <oilfltrs.h>
Inheritance diagram for JCWColourOILFilter:

Public Member Functions | |
| JCWColourOILFilter (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 539 of file oilfltrs.h.
|
|
Sets up the list of filename extensions that this filter understands.
Definition at line 1073 of file oilfltrs.cpp. 01073 : OILFilter(pFilter) 01074 { 01075 FilterName.Load(_R(IDT_FILTERNAME_JCWPALETTE)); 01076 FilterExt.Load(_R(IDT_FILTEREXT_JCWPALETTE)); 01077 }
|
|
|
Retuns a compatibility number based on the file extension.
Definition at line 1086 of file oilfltrs.cpp. 01087 { 01088 PORTNOTE("byteorder", "TODO: Check byte ordering") 01089 if (DoesExtensionOfPathNameMatch(&Filename)) 01090 return 9; 01091 else 01092 return 0; 01093 }
|
1.4.4