winix/plugins/thread/showthreads.h

36 lines
435 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_plugins_thread_showthreads
#define headerfile_winix_plugins_thread_showthreads
#include "functions/functionbase.h"
namespace Thread
{
class ShowThreads : public FunctionBase
{
public:
bool HasAccess();
void MakePost();
private:
};
} // namespace
#endif