subprocess for C++
						Python의 subprocess 는 외부 파일을 실행할 때 참 편리한 기능을 제공하는 클래스인데..C++ 용으로 subprocess 와 비슷한 기능을 구현한 클래스가 있어서 테스트해보니.. 참 괜찮음.. https://github.com/benman64/subprocess#include ....int RunProgram2(std::string programPath, std::vector args, std::string &output){	std::vector tokens;	tokens.push_back(programPath);	for(std::string &s: args) {		tokens.push_back(s);	}	// 콘솔 화면을 감춤#ifdef __MINGW32__	AllocConsole();	S..