1#ifndef WINDOWS_PROCESS_H
2#define WINDOWS_PROCESS_H
40 std::string process_path;
41 std::string process_name;
Represents a platform agnostic interface for a process.
Definition process.h:9
bool running() override
Returns whether the process is running or not.
void stop() override
Stops the process if currently running.
void start() override
Starts the process if not already started.
WindowsProcess(std::string process_path, std::string process_name)
Builds a Windows process.