#include <Processes.hpp>
Public Member Functions | |
Processes () | |
Default Constructor. | |
virtual | ~Processes () |
Destructor. | |
Static Public Member Functions | |
static int | isProcessRunning (std::string ProcessName) |
Check is a process is running. | |
static void | setTimeBetweenUpdates (float Seconds) |
Time between updates in seconds. | |
static void | updateProcessTree () |
Force an update of the process tree. |
Definition at line 82 of file Processes.hpp.
Processes::Processes | ( | ) |
Default Constructor.
Processes Default Constructor.
Definition at line 78 of file Processes.cpp.
References isProcessRunning().
Processes::~Processes | ( | ) | [virtual] |
int Processes::isProcessRunning | ( | std::string | ProcessName | ) | [static] |
Check is a process is running.
ProcessName | The name of the process to check on |
Definition at line 111 of file Processes.cpp.
References updateProcessTree().
Referenced by Processes().
void Processes::setTimeBetweenUpdates | ( | float | Seconds | ) | [static] |
Time between updates in seconds.
Set the time between updates in seconds.
Seconds | Number of seconds between updates |
Definition at line 129 of file Processes.cpp.