| 130 | } |
| 131 | |
| 132 | wxArrayStringEx PeekTokens() |
| 133 | { |
| 134 | wxArrayStringEx tokens; |
| 135 | if ( Journal::IsReplaying() ) |
| 136 | for ( ; !sFileIn.Eof(); NextIn() ) { |
| 137 | if ( sLine.StartsWith( CommentCharacter ) ) |
| 138 | continue; |
| 139 | |
| 140 | tokens = wxSplit( sLine, SeparatorCharacter, EscapeCharacter ); |
| 141 | if ( tokens.empty() ) |
| 142 | // Ignore blank lines |
| 143 | continue; |
| 144 | |
| 145 | break; |
| 146 | } |
| 147 | return tokens; |
| 148 | } |
| 149 | |
| 150 | constexpr auto VersionToken = wxT("Version"); |
| 151 |
no test coverage detected