winix/functions/uname.h

35 lines
357 B
C++
Executable File

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