~ubuntu-branches/ubuntu/saucy/digikam/saucy

« back to all changes in this revision

Viewing changes to libs/database/imagelisterreceiver.h

  • Committer: Bazaar Package Importer
  • Author(s): Scott Kitterman
  • Date: 2010-12-21 23:19:11 UTC
  • mfrom: (1.2.33 upstream) (3.1.7 experimental)
  • Revision ID: james.westby@ubuntu.com-20101221231911-z9jip7s5aht1jqn9
Tags: 2:1.7.0-1ubuntu1
* Merge from Debian Experimental. Remaining Ubuntu changes:
  - Export .pot name and copy to plugins in debian/rules
  - Version build-depends on kipi-plugins-dev to ensure build is against the
    same version on all archs
* Drop debian/patches/kubuntu_01_linker.diff, incoporated upstream
* Remove patches directory and unused patches

Show diffs side-by-side

added added

removed removed

Lines of Context:
50
50
 
51
51
    virtual ~ImageListerReceiver() {};
52
52
    virtual void receive(const ImageListerRecord& record) = 0;
53
 
    virtual void error(const QString &/*errMsg*/) {};
 
53
    virtual void error(const QString& /*errMsg*/) {};
54
54
};
55
55
 
56
56
class DIGIKAM_DATABASE_EXPORT ImageListerValueListReceiver
73
73
 
74
74
public:
75
75
 
76
 
    ImageListerSlaveBaseReceiver(KIO::SlaveBase *slave);
 
76
    ImageListerSlaveBaseReceiver(KIO::SlaveBase* slave);
77
77
    virtual void error(const QString& errMsg);
78
78
    void sendData();
79
79
 
80
80
protected:
81
81
 
82
 
    KIO::SlaveBase *m_slave;
 
82
    KIO::SlaveBase* m_slave;
83
83
};
84
84
 
85
85
class DIGIKAM_DATABASE_EXPORT ImageListerSlaveBasePartsSendingReceiver
88
88
 
89
89
public:
90
90
 
91
 
    ImageListerSlaveBasePartsSendingReceiver(KIO::SlaveBase *slave, int limit);
 
91
    ImageListerSlaveBasePartsSendingReceiver(KIO::SlaveBase* slave, int limit);
92
92
    virtual void receive(const ImageListerRecord& record);
93
93
 
94
94
protected: