! * \brief Add div element containing time elapsed to html file * \param it String iterator * \param indent Div indentation */
| 186 | * \param indent Div indentation |
| 187 | */ |
| 188 | void addTimeDiv (ofstream &htmlFile, vector<string>::iterator it, int indent) { |
| 189 | htmlFile << getInd(indent) << "<div class=\"" << getClass(*it) << "\">" << endl; |
| 190 | htmlFile << getInd(indent + 1) << "<p>" << getValue(*it) << "</p>" << endl; |
| 191 | htmlFile << getInd(indent) <<"</div>" << endl; |
| 192 | } |
| 193 | |
| 194 | /*! |
| 195 | * \brief Extract flag on a line |
no test coverage detected