winix/functions/reload.h

43 lines
482 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_reload
#define headerfile_winix_functions_reload
#include "functionbase.h"
namespace Winix
{
namespace Fun
{
class Reload : public FunctionBase
{
public:
Reload();
bool HasAccess();
void MakeGet();
private:
void FunReloadTemplates();
};
} // namespace
} // namespace Winix
#endif