Last change
on this file since 189 was 2, checked in by dmik, 19 years ago |
Imported original Psi 0.10 sources from Affinix
|
File size:
603 bytes
|
Line | |
---|
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
|
---|
Note:
See
TracBrowser
for help on using the repository browser.