winix/functions/stat.h

35 lines
363 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 headerfile_winix_functions_stat
#define headerfile_winix_functions_stat
#include "functionbase.h"
namespace Fun
{
class Stat : public FunctionBase
{
public:
Stat();
private:
};
} // namespace
#endif