00001
00002
00003
00004
00005
00006
00007 #import <OfficeImport/OADColor.h>
00008
00009 @interface OADRgbColor : OADColor
00010 {
00011 float mRed;
00012 float mGreen;
00013 float mBlue;
00014 }
00015
00016 + (id)rgbColorWithNSColor:(id)fp8;
00017 + (id)black;
00018 + (id)white;
00019 - (id)initWithRed:(float)fp8 green:(float)fp12 blue:(float)fp16;
00020 - (id)initWithRedByte:(float)fp8 greenByte:(float)fp12 blueByte:(float)fp16;
00021 - (id)copyWithZone:(struct _NSZone *)fp8;
00022 - (float)red;
00023 - (float)green;
00024 - (float)blue;
00025
00026 @end
00027