##// END OF EJS Templates
Wait for the end of an acquisition to validate an operation (3)...
Wait for the end of an acquisition to validate an operation (3) If an operation is to validate, waits the end of the acquisition

File last commit:

r1071:b92faa6e4b21
r1248:7541b71e5b78
Show More
DataSourceItemMergeHelper.h
15 lines | 439 B | text/x-c | CLexer
/ core / include / DataSource / DataSourceItemMergeHelper.h
#ifndef SCIQLOP_DATASOURCEITEMMERGEHELPER_H
#define SCIQLOP_DATASOURCEITEMMERGEHELPER_H
class DataSourceItem;
/**
* @brief The DataSourceItemMergeHelper struct is used to merge two data source items
* @sa DataSourceItem::merge()
*/
struct DataSourceItemMergeHelper {
/// Merges source item into dest item
static void merge(const DataSourceItem &source, DataSourceItem &dest);
};
#endif // SCIQLOP_DATASOURCEITEMMERGEHELPER_H