| 7 |
|
Exclude(int theIndex); |
| 8 |
|
~Exclude(){} |
| 9 |
|
|
| 10 |
+ |
static int* exPairs; // The Excludes array |
| 11 |
+ |
static int nExcludes; |
| 12 |
+ |
|
| 13 |
|
static void createArray( int nExludes ); |
| 14 |
|
static void destroyArray( void ); |
| 15 |
< |
static double* getArray( void ){ return exPairs; } |
| 16 |
< |
static double* exPairs; |
| 17 |
< |
|
| 15 |
> |
static int* getArray( void ){ return exPairs; } |
| 16 |
> |
void addExcludePairs(int nAdded, int* AexPair); |
| 17 |
> |
void deleteExcludePair(int theIndex); |
| 18 |
> |
void deleteRange(int startIndex, int stopIndex); |
| 19 |
> |
|
| 20 |
|
void setPair( int i, int j); |
| 21 |
|
|
| 22 |
|
protected: |