Files
winix/functions/who.h
Tomasz Sowa 920290e9dc changed: permission to winix function 'who' and 'last'
(only logged users can use these functions)


git-svn-id: svn://ttmath.org/publicrep/winix/trunk@826 e52654a7-88a9-db11-a3e9-0013d4bc506e
2012-04-06 08:11:25 +00:00

36 lines
383 B
C++
Executable File

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