##// END OF EJS Templates
Updates IDataProvider::requestDataLoading() method's signature...
Updates IDataProvider::requestDataLoading() method's signature The parameters needed for data retrieval are passed to a DataProviderParameters object. For now, it concerns only the list of datetimes to process, but the object will be completed with extra data which may be necessary for certain providers

File last commit:

r408:49f712bf7e59
r408:49f712bf7e59
Show More
DataProviderParameters.h
15 lines | 365 B | text/x-c | CLexer
/ core / include / Data / DataProviderParameters.h
Alexandre Leroux
Creates data provider parameters
r123 #ifndef SCIQLOP_DATAPROVIDERPARAMETERS_H
#define SCIQLOP_DATAPROVIDERPARAMETERS_H
Add SqpDateTime struct
r191 #include "SqpDateTime.h"
Alexandre Leroux
Creates data provider parameters
r123 /**
* @brief The DataProviderParameters struct holds the information needed to retrieve data from a
* data provider
* @sa IDataProvider
*/
struct DataProviderParameters {
Alexandre Leroux
Updates IDataProvider::requestDataLoading() method's signature...
r408 QVector<SqpDateTime> m_Times;
Alexandre Leroux
Creates data provider parameters
r123 };
#endif // SCIQLOP_DATAPROVIDERPARAMETERS_H