| 55 | { |
| 56 | |
| 57 | Options rdbReaderOptions( |
| 58 | const std::string& source = "", |
| 59 | const std::string& filter = "", |
| 60 | const bool extras = false |
| 61 | ) |
| 62 | { |
| 63 | Options options; |
| 64 | const std::string name(source.empty() ? "autzen-thin-srs.rdbx" : source); |
| 65 | const std::string mask(filter.empty() ? "riegl.id != 0" : filter); |
| 66 | options.add(Option("filename", testDataPath() + name)); |
| 67 | options.add(Option("filter", mask)); |
| 68 | options.add(Option("extras", extras)); |
| 69 | return options; |
| 70 | } |
| 71 | |
| 72 | Options rdbReaderOptions( |
| 73 | const std::string& filter, |