summaryrefslogtreecommitdiffabout
path: root/microkde/kprocess.h
blob: dffe96d9aeb864ebdd308f8f3c00860a6b05fff3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#ifndef MINIKDE_KPROCESS_H
#define MINIKDE_KPROCESS_H

#include <qobject.h>
//#include <qpe/qprocess.h>

class KProcess : public QObject
{
  public:
    enum RunMode { DontCare, NotifyOnExit, Block };
  
    void clearArguments();
    
    KProcess & operator<<( const QString & );
    
    bool start( RunMode mode = DontCare );

  private:
//    QProcess mProcess;
};

#endif