#ifndef NETFS_DAEMON_IOHELPERS #define NETFS_DAEMON_IOHELPERS #include class ModeCheck { public: static bool ReadableBy(const struct stat &, uid_t u, gid_t g); static bool WritableBy(const struct stat &, uid_t u, gid_t g); static bool ExecutableBy(const struct stat &, uid_t u, gid_t g); }; #endif