~ubuntu-branches/ubuntu/oneiric/psi/oneiric

« back to all changes in this revision

Viewing changes to cutestuff/openpgp/gpgproc/sprocess.h

  • Committer: Bazaar Package Importer
  • Author(s): Jan Niehusmann
  • Date: 2006-01-20 00:20:36 UTC
  • mfrom: (1.2.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20060120002036-7nw6yo6totip0ee5
Tags: 0.10-2
* Added upstream changelog (Closes: Bug#327748)
* Mention --no-gpg and --no-gpg-agent in manpage (Closes: Bug#204416)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#ifndef SPROCESS_H
2
 
#define SPROCESS_H
3
 
 
4
 
#include<qvaluelist.h>
5
 
#include"jprocess.h"
6
 
 
7
 
class SProcess : public JProcess
8
 
{
9
 
        Q_OBJECT
10
 
public:
11
 
        SProcess();
12
 
        ~SProcess();
13
 
 
14
 
        void setClosePipeList(const QValueList<int> &);
15
 
 
16
 
private:
17
 
        QValueList<int> pipeList;
18
 
        static void childStarting(JProcess *);
19
 
};
20
 
 
21
 
#endif