| # | Line 1 | Line 1 | |
|---|---|---|
| 1 | + | #include <iostream> | 
| 2 | #include <cstdlib> | |
| 3 | ||
| 4 | + | |
| 5 | #include "Exclude.hpp" | |
| 6 | ||
| 7 | int Exclude::nExcludes; | |
| 8 | + | int* Exclude::exPairs; | 
| 9 | ||
| 10 | Exclude::Exclude( int theIndex ){ | |
| 11 | exI = theIndex*2; | |
| # | Line 12 | Line 15 | void Exclude::createArray( int the_nExcludes ){ | |
| 15 | void Exclude::createArray( int the_nExcludes ){ | |
| 16 | ||
| 17 | nExcludes = the_nExcludes; | |
| 18 | + | std::cerr << "nExcludes = " << nExcludes << "\n"; | 
| 19 | exPairs = new int[nExcludes*2]; | |
| 20 | } | |
| 21 | ||
| – | Removed lines | 
| + | Added lines | 
| < | Changed lines | 
| > | Changed lines |