19 lines
189 B
C++
19 lines
189 B
C++
#ifndef _TRM_
|
|
#define _TRM_
|
|
|
|
#include <iostream>
|
|
#include <string>
|
|
|
|
using namespace std;
|
|
|
|
namespace marcelb {
|
|
|
|
/**
|
|
* Execute bash command
|
|
*/
|
|
string exec(const string& command);
|
|
|
|
}
|
|
|
|
|
|
#endif |