winix/functions/uname.h

39 lines
412 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_uname
#define headerfile_winix_functions_uname
#include "functionbase.h"
namespace Winix
{
namespace Fun
{
class Uname : public FunctionBase
{
public:
Uname();
private:
};
} // namespace
} // namespace Winix
#endif