winix/functions/who.h

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