summaryrefslogtreecommitdiff
path: root/core/launcher/packageslave.h
Unidiff
Diffstat (limited to 'core/launcher/packageslave.h') (more/less context) (ignore whitespace changes)
-rw-r--r--core/launcher/packageslave.h52
1 files changed, 52 insertions, 0 deletions
diff --git a/core/launcher/packageslave.h b/core/launcher/packageslave.h
new file mode 100644
index 0000000..036abed
--- a/dev/null
+++ b/core/launcher/packageslave.h
@@ -0,0 +1,52 @@
1/**********************************************************************
2** Copyright (C) 2000 Trolltech AS. All rights reserved.
3**
4** This file is part of Qtopia Environment.
5**
6** This file may be distributed and/or modified under the terms of the
7** GNU General Public License version 2 as published by the Free Software
8** Foundation and appearing in the file LICENSE.GPL included in the
9** packaging of this file.
10**
11** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
12** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
13**
14** See http://www.trolltech.com/gpl/ for GPL licensing information.
15**
16** Contact info@trolltech.com if any conditions of this licensing are
17** not clear to you.
18**
19**********************************************************************/
20
21#ifndef __packageslave_h__
22#define __packageslave_h__
23
24#include <qobject.h>
25
26class QCopChannel;
27
28class PackageSlave : public QObject
29{
30 Q_OBJECT
31
32public:
33 PackageSlave( QObject *parent, char* name = 0 );
34
35protected:
36 void installPackage( const QString &package );
37 void removePackage( const QString &package );
38
39protected slots:
40 void qcopMessage( const QCString &msg, const QByteArray &data );
41
42private:
43 void sendReply( const QCString& msg, const QString& arg );
44
45private:
46 QCopChannel *packageChannel;
47};
48
49
50#endif // __QUICK_LAUNCHER_H__
51
52