diff options
Diffstat (limited to 'src/types.h')
| -rw-r--r-- | src/types.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/types.h b/src/types.h index 684145dd..1102f16b 100644 --- a/src/types.h +++ b/src/types.h @@ -215,6 +215,8 @@ extern std::ostream& operator<< (std::ostream& s, Fraction const & f); * * When comparing things, we want to be able to ignore some differences; * this class expresses those differences. + * + * It also contains some settings for how the comparison should be done. */ struct EqualityOptions { @@ -229,6 +231,7 @@ struct EqualityOptions , issue_dates_can_differ (false) , load_font_nodes_can_differ (false) , keep_going (false) + , export_differing_subtitles (false) {} /** The maximum allowable mean difference in pixel value between two images */ @@ -247,6 +250,8 @@ struct EqualityOptions bool issue_dates_can_differ; bool load_font_nodes_can_differ; bool keep_going; + /** true to save the first pair of differeng image subtitles to the current working directory */ + bool export_differing_subtitles; }; /* I've been unable to make mingw happy with ERROR as a symbol, so |
