winix/functions/run.h

42 lines
440 B
C++
Executable File

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