##// END OF EJS Templates
Fix the problem of calling the zoom at wheel event on the color scale
Fix the problem of calling the zoom at wheel event on the color scale

File last commit:

r1071:b92faa6e4b21
r1390:ed0f1486704f
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