winix/functions/run.h

38 lines
385 B
C++
Executable File

/*
* 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