00001 #ifndef MINIKDE_KPROCESS_H 00002 #define MINIKDE_KPROCESS_H 00003 00004 #include <qobject.h> 00005 00006 class KProcess : public QObject 00007 { 00008 public: 00009 void clearArguments(); 00010 00011 KProcess & operator<<( const QString & ); 00012 00013 bool start(); 00014 }; 00015 00016 #endif
1.4.2