/* * This file is a part of Winix * and is not publicly distributed * * Copyright (c) 2008-2010, Tomasz Sowa * All rights reserved. * */ #include "chown.h" namespace Fun { Chown::Chown() { fun.url = L"chown"; } void Chown::MakePost() { priv_changer.SetRequest(request); priv_changer.SetSystem(system); priv_changer.SetDb(db); priv_changer.Change(true, false); } void Chown::MakeGet() { priv_changer.SetRequest(request); priv_changer.SetSystem(system); priv_changer.SetDb(db); priv_changer.CheckAccess(); } } // namespace