/* * This file is a part of Winix * and is not publicly distributed * * Copyright (c) 2010, Tomasz Sowa * All rights reserved. * */ #ifndef headerfilecmslucontentchmod #define headerfilecmslucontentchmod #include "functionbase.h" #include "privchanger.h" namespace Fun { class Chmod : public FunctionBase { public: Chmod(); void MakePost(); void MakeGet(); private: PrivChanger priv_changer; }; } // namespace #endif