##// END OF EJS Templates
Updated libcatalogs -> fixes catalog issue...
Updated libcatalogs -> fixes catalog issue Signed-off-by: Alexis Jeandet <alexis.jeandet@member.fsf.org>

File last commit:

r30:02d2d8643fcb
r51:9aec54f98372
Show More
DataProviderParameters.h
18 lines | 492 B | text/x-c | CLexer
/ include / Data / DataProviderParameters.h
#ifndef SCIQLOP_DATAPROVIDERPARAMETERS_H
#define SCIQLOP_DATAPROVIDERPARAMETERS_H
#include "DateTimeRange.h"
/**
* @brief The DataProviderParameters struct holds the information needed to retrieve data from a
* data provider
* @sa IDataProvider
*/
struct DataProviderParameters {
/// Times for which retrieve data
DateTimeRange m_Range;
/// Extra data that can be used by the provider to retrieve data
QVariantHash m_Data;
};
#endif // SCIQLOP_DATAPROVIDERPARAMETERS_H