/* * This file is a part of Winix * and is not publicly distributed * * Copyright (c) 2011-2014, Tomasz Sowa * All rights reserved. * */ #include "mount.h" #include "functions.h" namespace Winix { namespace Fun { Mount::Mount() { fun.url = L"mount"; } bool Mount::HasAccess() { if( cur->session->puser && cur->session->puser->super_user ) return true; return false; } void Mount::MakeGet() { } } // namespace } // namespace Winix