Options for Variable::dump_exposed().
| 76 | |
| 77 | // Options for Variable::dump_exposed(). |
| 78 | struct DumpOptions { |
| 79 | // Constructed with default options. |
| 80 | DumpOptions(); |
| 81 | |
| 82 | // If this is true, string-type values will be quoted. |
| 83 | bool quote_string; |
| 84 | |
| 85 | // The ? in wildcards. Wildcards in URL need to use another character |
| 86 | // because ? is reserved. |
| 87 | char question_mark; |
| 88 | |
| 89 | // Dump variables with matched display_filter |
| 90 | DisplayFilter display_filter; |
| 91 | |
| 92 | // Name matched by these wildcards (or exact names) are kept. |
| 93 | std::string white_wildcards; |
| 94 | |
| 95 | // Name matched by these wildcards (or exact names) are skipped. |
| 96 | std::string black_wildcards; |
| 97 | }; |
| 98 | |
| 99 | struct SeriesOptions { |
| 100 | SeriesOptions() : fixed_length(true), test_only(false) {} |