| 391 | |
| 392 | template <class TRecord, class TPacker> |
| 393 | static int DoMain(const TOptions& o, const TPacker& packer) { |
| 394 | int retcode = SelectInput<TRecord>(o, packer); |
| 395 | if (!retcode && o.Verify && !o.Triefile.empty()) |
| 396 | retcode = VerifyFile<TRecord>(o, packer); |
| 397 | return retcode; |
| 398 | } |
| 399 | |
| 400 | // TRecord - nested template parameter |
| 401 | template<class TValue, |