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