Free Web Hosting Provider - Web Hosting - E-commerce - High Speed Internet - Free Web Page
Search the Web


#ifndef _POPEN_H
#define _POPEN_H


#include <stdio.h>
#include <unistd.h>
#include <assert.h>
#include <errno.h>

#include <iostream>
#include <string>
#include <vector>
using namespace std;


bool popen_cplusplus_wrapper (
   const string&   command_line_i,
   vector<string>& out_result_o,
   vector<string>& err_result_o
   );

#endif