Esempio n. 1
0
bool UserStreamWrapper::chgrp(const String& path, const String& gid) {
  auto file = req::make<UserFile>(m_cls);
  return file->chgrp(path, gid);
}
Esempio n. 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);
}