##// END OF EJS Templates
Added static plugin support...
Added static plugin support In case of fully static exe even plugins must be static to allow single file executable. Small fix, when using resources in app from library they must be initialized with Q_INIT_RESOURCE. Signed-off-by: Alexis Jeandet <alexis.jeandet@member.fsf.org>

File last commit:

r1071:b92faa6e4b21
r1156:247dc18789c6
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