##// END OF EJS Templates
push method of worker return the id of the nextRange which is canceled
push method of worker return the id of the nextRange which is canceled

File last commit:

r471:d00d6fd96c10
r584:d6648352006d
Show More
DataProviderParameters.h
18 lines | 491 B | text/x-c | CLexer
/ core / include / Data / DataProviderParameters.h
Alexandre Leroux
Creates data provider parameters
r115 #ifndef SCIQLOP_DATAPROVIDERPARAMETERS_H
#define SCIQLOP_DATAPROVIDERPARAMETERS_H
Change SqpRange for SqpDateTime
r471 #include "SqpRange.h"
Add SqpDateTime struct
r177
Alexandre Leroux
Creates data provider parameters
r115 /**
* @brief The DataProviderParameters struct holds the information needed to retrieve data from a
* data provider
* @sa IDataProvider
*/
struct DataProviderParameters {
Alexandre Leroux
Pass variable metadata as parameters of a request in a provider
r378 /// Times for which retrieve data
Change SqpRange for SqpDateTime
r471 QVector<SqpRange> m_Times;
Alexandre Leroux
Pass variable metadata as parameters of a request in a provider
r378 /// Extra data that can be used by the provider to retrieve data
QVariantHash m_Data;
Alexandre Leroux
Creates data provider parameters
r115 };
#endif // SCIQLOP_DATAPROVIDERPARAMETERS_H