~ubuntu-branches/ubuntu/edgy/kopete/edgy-updates

« back to all changes in this revision

Viewing changes to kopete/protocols/yahoo/libkyahoo/sendpicturetask.h

  • Committer: Bazaar Package Importer
  • Author(s): Sarah Hobbs
  • Date: 2006-07-14 23:45:58 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20060714234558-gq6jzmy117r2pj4r
Tags: 4:3.5.4+kopete0.12.1-0ubuntu1
* New upstream version
* Reverted patch 01_kopete_kdesktop_freeze.diff (fixed upstream)
* Reverted patch 02_icq_version_too_old.diff (fixed upstream)
* Bumped Version so that this gets installed, instead of the kopete in kdenetwork

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
#define SENDPICTURETASK_H
19
19
 
20
20
#include "task.h"
21
 
#include <kbufferedsocket.h>
22
21
 
23
 
using namespace KNetwork;
24
22
class QString;
25
23
class QFile;
26
24
namespace KIO   { 
27
25
        class Job;
28
26
        class TransferJob; 
29
27
};
30
 
 
 
28
namespace KNetwork      { 
 
29
        class KBufferedSocket;
 
30
}
31
31
 
32
32
/**
33
33
@author André Duffeck
59
59
private slots:
60
60
        void connectSucceeded();
61
61
        void connectFailed( int );
 
62
        void readResult();
62
63
private:
63
64
        Type m_type;
64
65
        QString m_target;
70
71
        QString m_url;
71
72
        int m_transmitted;
72
73
        QFile *m_file;
73
 
        KBufferedSocket *m_socket;
 
74
        KNetwork::KBufferedSocket *m_socket;
74
75
};
75
76
 
76
77
#endif