| 176 | return result; |
| 177 | } |
| 178 | bool IsInitFile(const SGPath& filename) { |
| 179 | bool result=false; |
| 180 | Element *document = LoadXMLDocument(filename, false); |
| 181 | if (document && document->GetName() == "initialize") result = true; |
| 182 | ResetParser(); |
| 183 | return result; |
| 184 | } |
| 185 | }; |
| 186 | |
| 187 | /** The Timer class measures the elapsed real time and can be paused and resumed. |
no test coverage detected