options.hpp 349 B

1234567891011121314151617
  1. #ifndef __OPTIONS_HPP__
  2. #define __OPTIONS_HPP__
  3. #include "types.hpp"
  4. struct PRACOptions {
  5. ProcessingMode mode;
  6. int num_threads;
  7. bool expand_rdpfs;
  8. bool use_xor_db;
  9. bool append_to_files;
  10. PRACOptions() : mode(MODE_ONLINE), num_threads(1),
  11. expand_rdpfs(false), use_xor_db(false), append_to_files(false) {}
  12. };
  13. #endif