winix/functions/man.h

37 lines
394 B
C++
Executable File

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