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