synchelper.h
00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
#ifndef KSYNC_SYNC_HELPER_H
00022
#define KSYNC_SYNC_HELPER_H
00023
00024
#include <qobject.h>
00025
00026
#include <syncer.h>
00027
00028
00029
namespace KSync {
00035 class SyncHelper :
public QObject{
00036 Q_OBJECT
00037
public:
00038
SyncHelper(
SyncUi*,
SyncAlgorithm* );
00039 ~
SyncHelper();
00040
void sync();
00041
void addSyncee(
Syncee* );
00042 signals:
00043
void done();
00044
00045
protected:
00046
void customEvent(
QCustomEvent* );
00047
private:
00048
struct Data;
00049 Data* data;
00050
class Private;
00051 Private* d;
00052 };
00053 }
00054
00055
#endif
This file is part of the documentation for kitchensync Library Version 3.3.0.