options.hpp 412 B

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