winix/functions/reload.h

39 lines
442 B
C++
Executable File

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