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.

17 lines
328 B

  1. #include "func_getattr_base.hpp"
  2. namespace Func2
  3. {
  4. class GetattrFF : final public GetattrBase
  5. {
  6. public:
  7. GetattrFF() {}
  8. ~GetattrFF() {}
  9. public:
  10. int process(const Branches &branches,
  11. const fs::Path &fusepath,
  12. struct stat *st,
  13. fuse_timeouts_t *timeout);
  14. };
  15. }