| 2072 | |
| 2073 | |
| 2074 | void |
| 2075 | Domain::setLoadConstant(void) |
| 2076 | { |
| 2077 | // loop over all the load patterns that are currently added to the domain |
| 2078 | // getting them to set their loads as now constant |
| 2079 | LoadPattern *thePattern; |
| 2080 | LoadPatternIter &thePatterns = this->getLoadPatterns(); |
| 2081 | while((thePattern = thePatterns()) != 0) |
| 2082 | thePattern->setLoadConstant(); |
| 2083 | } |
| 2084 | |
| 2085 | |
| 2086 | void |
no outgoing calls
no test coverage detected