~ubuntu-branches/ubuntu/quantal/psi/quantal

« back to all changes in this revision

Viewing changes to cutestuff/socksd.h

  • Committer: Bazaar Package Importer
  • Author(s): Jan Niehusmann
  • Date: 2005-01-10 17:41:43 UTC
  • mfrom: (1.2.1 upstream) (2.1.2 hoary)
  • Revision ID: james.westby@ubuntu.com-20050110174143-ltocv5zapl6blf5d
Tags: 0.9.3-1
* New upstream release
* Cleaned up debian/rules (some things are done by upstream Makefiles now)
* Fixed some lintian warnings:
  - removed executable bit from some .png files
  - moved psi.desktop to /usr/share/applications
* Updated menu files

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef TEST_H
 
2
#define TEST_H
 
3
 
 
4
#include<qobject.h>
 
5
 
 
6
class App : public QObject
 
7
{
 
8
        Q_OBJECT
 
9
public:
 
10
        App(int, const QString &, const QString &);
 
11
        ~App();
 
12
 
 
13
signals:
 
14
        void quit();
 
15
 
 
16
private slots:
 
17
        void st_connectionClosed();
 
18
        void st_delayedCloseFinished();
 
19
        void st_readyRead();
 
20
        void st_error(int);
 
21
 
 
22
        void con_connectionClosed();
 
23
        void con_readyRead();
 
24
 
 
25
        void ss_incomingReady();
 
26
        void sc_incomingMethods(int);
 
27
        void sc_incomingAuth(const QString &user, const QString &pass);
 
28
        void sc_incomingRequest(const QString &host, int port);
 
29
        void sc_error(int);
 
30
 
 
31
private:
 
32
        class Private;
 
33
        Private *d;
 
34
};
 
35
 
 
36
#endif