#include <expcol.h>
Inheritance diagram for ExportColour:
Public Member Functions | |
ExportColour (IndexedColour *pNewCol, INT32 NewRecordNumber) | |
Create a new export colour list item from the given indexed colour. | |
ExportColour (PColourRGBT *pNewRGBCol, INT32 NewRecordNumber) | |
Create a new export colour list item from the given indexed colour. | |
Public Attributes | |
IndexedColour * | pCol |
PColourRGBT | SimpleRGBColour |
INT32 | RecordNumber |
Definition at line 125 of file expcol.h.
|
Create a new export colour list item from the given indexed colour.
Definition at line 132 of file expcol.cpp. 00133 { 00134 // Initialise our class variables to these specified values. 00135 pCol = pNewCol; 00136 RecordNumber = NewRecordNumber; 00137 }
|
|
Create a new export colour list item from the given indexed colour.
Definition at line 153 of file expcol.cpp. 00154 { 00155 // Initialise our class variables to these specified values. 00156 // Indexed colour is NULL, which means use the simple colour in searching 00157 pCol = NULL; 00158 SimpleRGBColour = *pNewRGBCol; 00159 RecordNumber = NewRecordNumber; 00160 }
|
|
|
|
|
|
|