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.

27 lines
392 B

10 months ago
9 months ago
10 months ago
10 months ago
10 months ago
10 months ago
8 months ago
8 months ago
10 months ago
10 months ago
10 months ago
10 months ago
8 months ago
8 months ago
8 months ago
8 months ago
10 months ago
  1. #include "branches2.hpp"
  2. #include "func_create.hpp"
  3. #include <memory>
  4. class State
  5. {
  6. typedef ghc::filesystem::path Path;
  7. public:
  8. State();
  9. public:
  10. Branches2 branches;
  11. public:
  12. int
  13. create(Path const &fusepath_,
  14. mode_t const mode_,
  15. fuse_file_info_t *ffi_)
  16. {
  17. return _create(branches,fusepath_,mode_,ffi_);
  18. }
  19. private:
  20. Func2::Create _create;
  21. };