SyncOptions: added comment to m_startCallback

This commit is contained in:
Patrick Ohly 2012-02-13 10:48:20 +01:00
parent 49ea9ea49e
commit 99558dd1f7
1 changed files with 2 additions and 2 deletions

View File

@ -137,13 +137,13 @@ struct SyncOptions {
bool m_isAborted;
typedef boost::function<bool (SyncContext &,
SyncOptions &)> Callback_t;
/**
* Callback to be invoked after setting up local sources, but
* before running the engine. May throw exception to indicate
* error and return true to stop sync without error.
*/
typedef boost::function<bool (SyncContext &,
SyncOptions &)> Callback_t;
Callback_t m_startCallback;
/**