示例#1
0
bool UserStreamWrapper::chgrp(const String& path, const String& gid) {
  auto file = req::make<UserFile>(m_cls);
  return file->chgrp(path, gid);
}
示例#2
0
bool UserStreamWrapper::chgrp(const String& path, const String& gid) {
  auto file = newres<UserFile>(m_cls);
  Resource wrapper(file);
  return file->chgrp(path, gid);
}