##// END OF EJS Templates
Defines operations pool...
Defines operations pool The operation pool will be used to pick a random operation at each iteration of the test to apply it on a variable

File last commit:

r1071:b92faa6e4b21
r1204:e9fc95127967
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