| 67 | } |
| 68 | |
| 69 | void cmRST::ProcessRST(std::istream& is) |
| 70 | { |
| 71 | std::string line; |
| 72 | while (cmSystemTools::GetLineFromStream(is, line)) { |
| 73 | this->ProcessLine(line); |
| 74 | } |
| 75 | this->Reset(); |
| 76 | } |
| 77 | |
| 78 | void cmRST::ProcessModule(std::istream& is) |
| 79 | { |
no test coverage detected