#ifndef PROC_H
#define PROC_H

#include <nmstl/netioevent>

using namespace nmstl;  
using namespace std;  

class proc_handler : public net_handler<> {
 public:
  proc_handler(io_event_loop& loop, string command); 
  ~proc_handler();

  int incoming_data(constbuf buf);

 private:
  int pid;
};

#endif
