/* * This file is a part of Winix * and is not publicly distributed * * Copyright (c) 2011-2014, Tomasz Sowa * All rights reserved. * */ #ifndef headerfile_winix_functions_mount #define headerfile_winix_functions_mount #include "functionbase.h" namespace Winix { namespace Fun { class Mount : public FunctionBase { public: Mount(); bool HasAccess(); void MakeGet(); }; } // namespace } // namespace Winix #endif