#include "../Powershell.hpp" #ifdef __linux__ #elif _WIN32 #include #endif bool testPowershell(); int main() { bool res; std::cout << "[+] testPowershell" << std::endl; res = testPowershell(); if (res) std::cout << "[+] Sucess" << std::endl; else std::cout << "[-] Failed" << std::endl; return 0; } bool testPowershell() { // std::unique_ptr Powershell = std::make_unique(); // { // } return false; }