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