winix/functions/man.h

33 lines
349 B
C++
Executable File

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