You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
246 B

10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
  1. #include "ghc/filesystem.hpp"
  2. #include <stdint.h>
  3. class Branch2
  4. {
  5. public:
  6. enum class Mode
  7. {
  8. RO,
  9. RW,
  10. NC
  11. };
  12. public:
  13. bool enabled;
  14. Mode mode;
  15. uint64_t min_free_space;
  16. int fd;
  17. ghc::filesystem::path path;
  18. };