summaryrefslogtreecommitdiff
path: root/noncore/apps/tinykate/libkate/microkde/kprocess.h
blob: 96dce54d9c7de22eadc16224ac55c7550c2cebb1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef MINIKDE_KPROCESS_H
#define MINIKDE_KPROCESS_H

#include <qobject.h>

class KProcess : public QObject
{
  public:
    void clearArguments();
    
    KProcess & operator<<( const QString & );
    
    bool start();
};

#endif