#ifndef MINIKDE_KPROCESS_H #define MINIKDE_KPROCESS_H #include //#include 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