| 471 | static Brush *brush = new RectangleBrush(1,1); |
| 472 | |
| 473 | void printState(color_ostream &out) |
| 474 | { |
| 475 | out << "Filter: " << filter << std::endl |
| 476 | << "Paint: " << paint << std::endl |
| 477 | << "Brush: " << brush << std::endl; |
| 478 | } |
| 479 | |
| 480 | //zilpin: These two functions were giving me compile errors in VS2008, so I cheated with the C style loop below, just to get it to build. |
| 481 | //Original code is commented out. |
no outgoing calls
no test coverage detected