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