~ubuntu-branches/ubuntu/raring/kdepimlibs/raring-proposed

« back to all changes in this revision

Viewing changes to akonadi/resourcebase.h

  • Committer: Package Import Robot
  • Author(s): Jonathan Riddell
  • Date: 2012-07-26 17:13:11 UTC
  • mfrom: (1.1.81)
  • Revision ID: package-import@ubuntu.com-20120726171311-j2heoxylb6lbhg4w
Tags: 4:4.9.0-0ubuntu1
* New upstream release
* Use direct build-depends versions rather than kde-sc-dev-latest

Show diffs side-by-side

added added

removed removed

Lines of Context:
297
297
    //       in order to simulate polymorphism
298
298
    void abortActivity();
299
299
 
 
300
    /**
 
301
     * Dump resource internals, for debugging.
 
302
     * @since 4.9
 
303
     */
 
304
    // KDE5: Make it pure virtual, for now can be called only by invokeMethod()
 
305
    //       in order to simulate polymorphism
 
306
    QString dumpResourceToString() const { return QString(); }
 
307
 
300
308
  protected:
301
309
    /**
302
310
     * Creates a base resource.
642
650
    Q_PRIVATE_SLOT( d_func(), void slotPrepareItemRetrievalResult( KJob* ) )
643
651
    Q_PRIVATE_SLOT( d_func(), void changeCommittedResult( KJob* ) )
644
652
    Q_PRIVATE_SLOT( d_func(), void slotSessionReconnected() )
 
653
    Q_PRIVATE_SLOT( d_func(), void slotRecursiveMoveReplay( RecursiveMover* ) )
 
654
    Q_PRIVATE_SLOT( d_func(), void slotRecursiveMoveReplayResult( KJob* ) )
645
655
};
646
656
 
647
657
}