winix/functions/tinymce.h

41 lines
478 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_tinymce
#define headerfile_winix_functions_tinymce
#include "functionbase.h"
namespace Winix
{
namespace Fun
{
class Tinymce : public FunctionBase
{
public:
Tinymce();
void Init();
bool HasAccess();
void MakeGet();
void MakePost();
};
} // namespace
} // namespace Winix
#endif