/* * This file is a part of Winix * and is not publicly distributed * * Copyright (c) 2010, Tomasz Sowa * All rights reserved. * */ #ifndef headerfilecmslucontentadduser #define headerfilecmslucontentadduser #include "functionbase.h" namespace Fun { class AddUser : public FunctionBase { public: AddUser(); void MakePost(); private: bool CheckAddUserVars(const std::string * login, const std::string * pass, const std::string * conf_pass); }; } // namespace #endif