diff options
Diffstat (limited to 'kitchensync/libqopensync/engine.h')
-rw-r--r-- | kitchensync/libqopensync/engine.h | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/kitchensync/libqopensync/engine.h b/kitchensync/libqopensync/engine.h index e62a5f689..c7314db47 100644 --- a/kitchensync/libqopensync/engine.h +++ b/kitchensync/libqopensync/engine.h @@ -22,12 +22,14 @@ #ifndef QSYNC_ENGINE_H #define QSYNC_ENGINE_H -#include <libqopensync/group.h> - class OSyncEngine; namespace QSync { +class Group; +class Member; +class Result; + class Engine { friend class CallbackHandler; @@ -59,6 +61,11 @@ class Engine Result synchronize(); /** + Starts the discover process for a certain member. + */ + Result discover( const Member &member ); + + /** Stops the synchronization process. */ void abort(); |