//
// C++ Implementation: execute_process
//
// Description:
//
//
// Author: Joachim Schiele <js@lastlog.de>, (C) 2009
//
// Copyright: See COPYING file that comes with this distribution
//
//
#include "execute_process.h"

execute_process::execute_process() {
  myProcess = new QProcess();
}

execute_process::~execute_process() {
}

void execute_process::execute(QString program) {
  QStringList arguments;
  arguments << "" << "";
  myProcess->start(program, arguments);
}
