You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ksensors/src/processexec.cpp

55 lines
1.8 KiB

/***************************************************************************
processexec.cpp - description
-------------------
begin : sáb abr 27 2002
copyright : (C) 2002 by asdf
email : dsf
***************************************************************************/
/***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************/
#include <string.h>
#include "processexec.h"
ProcessExec::ProcessExec(): TDEProcess()
{
clearData();
connect( this, TQ_SIGNAL(receivedStdout(TDEProcess *, char *, int)),this, TQ_SLOT(slotReceivedStdout(TDEProcess *, char *, int)) );
connect( this, TQ_SIGNAL(receivedStderr(TDEProcess *, char *, int)),this, TQ_SLOT(slotReceivedStderr(TDEProcess *, char *, int)) );
}
ProcessExec::~ProcessExec(){
}
bool ProcessExec::run()
{
clearData();
return start( NotifyOnExit, Communication(Stdout | Stderr )); // | NoRead));
}
bool ProcessExec::runAndWait()
{
clearData();
return start(Block,Communication(Stdout | Stderr));
}
void ProcessExec::slotReceivedStdout(TDEProcess *proc, char *buf, int len)
{
buffer = TQString(buf);
}
void ProcessExec::slotReceivedStderr(TDEProcess *proc, char *buf, int len)
{
fErrors= true;
slotReceivedStdout(proc,buf,len);
}
#include "processexec.moc"