![]() |
Panoptes 1.0.0
Endpoint Detection and Response
|
#include <Windows.h>#include <iostream>#include <string>#include <fstream>#include <vector>Go to the source code of this file.
Functions | |
| bool | FileExists (const std::string &filePath) |
| Check if a file exists. | |
| void | RemoveStringFromVector (std::vector< std::string > &vec, const std::string &str) |
| Remove a string from a vector | |
| bool | IsStringInVector (const std::vector< std::string > &vec, const std::string &str) |
| Check if a string is in a vector. | |
| bool FileExists | ( | const std::string & | filePath | ) |
Check if a file exists.
| filePath | The path to the file |
Check if a file exists.
| filePath | The path to the file |
Definition at line 22 of file PanoptesLinter.cpp.
Referenced by InstallPanoptes(), main(), and UninstallPanoptes().
| bool IsStringInVector | ( | const std::vector< std::string > & | vec, |
| const std::string & | str | ||
| ) |
Check if a string is in a vector.
| vec | The vector to check |
| str | The string to check |
Definition at line 39 of file PanoptesLinter.cpp.
Referenced by main().
| void RemoveStringFromVector | ( | std::vector< std::string > & | vec, |
| const std::string & | str | ||
| ) |
Remove a string from a vector
| vec | The vector to remove the string from |
| str | The string to remove |
Remove a string from a vector
| vec | The vector to remove the string from |
| str | The string to remove |
Definition at line 31 of file PanoptesLinter.cpp.
Referenced by main().