00001 #ifndef FILEBASE_INC 00002 #define FILEBASE_INC 00003 00004 class FileBase; 00005 00006 // color models for transfers 00007 // Want to abstract the color model down to the pixel level so pass 00008 // the color model to the transfer routine. 00009 00010 #define FILEBASE_GREY 1 00011 #define FILEBASE_YUV 2 00012 #define FILEBASE_RAW 3 00013 #define FILEBASE_RGBA 4 00014 00015 00016 #endif
1.4.4