| 252 | } |
| 253 | |
| 254 | unsigned int BibTeXFile::numEntries() const |
| 255 | { |
| 256 | // Only count "normal" entries |
| 257 | unsigned int retVal = 0; |
| 258 | for (int i = 0; i < _entries.size(); ++i) { |
| 259 | if (_entries[i].type() == Entry::NORMAL) ++retVal; |
| 260 | } |
| 261 | return retVal; |
| 262 | } |
| 263 | |
| 264 | QMap<QString, QString> BibTeXFile::strings() const |
| 265 | { |
no test coverage detected