##// END OF EJS Templates
Adds read compatibility for local AMDA server...
Adds read compatibility for local AMDA server The local AMDA server uses another regex than the default server to read the units in x. We manage the compatibility by adding in the parser the possibility of testing several regexes to read a property

File last commit:

r1071:b92faa6e4b21
r1154:98220c931c83
Show More
DataSourceItemMergeHelper.h
15 lines | 439 B | text/x-c | CLexer
/ core / include / DataSource / DataSourceItemMergeHelper.h
Alexandre Leroux
Inits merge method of two items
r1071 #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