Files
winix/functions/stat.h
Tomasz Sowa a1bee81a5b added 'stat' winix function
git-svn-id: svn://ttmath.org/publicrep/winix/trunk@665 e52654a7-88a9-db11-a3e9-0013d4bc506e
2010-10-23 14:54:44 +00:00

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