13 lines
189 B
C++
13 lines
189 B
C++
|
|
#include <io.h>
|
|
#include <iostream>
|
|
#include <Windows.h>
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
class CmdUtil
|
|
{
|
|
public:
|
|
static std::string ExecuteCommand(const std::string& command);
|
|
};
|