##// END OF EJS Templates
Shows min/max x-axis data in Variable widget (2)...
Shows min/max x-axis data in Variable widget (2) Creates max() method that returns the iterator on the last value that is <= than the value passed in parameter + implements unit tests

File last commit:

r512:d00d6fd96c10
r600:c613c4935e08
Show More
DataProviderParameters.h
18 lines | 491 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
Change SqpRange for SqpDateTime
r512 #include "SqpRange.h"
Add SqpDateTime struct
r191
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
Pass variable metadata as parameters of a request in a provider
r411 /// Times for which retrieve data
Change SqpRange for SqpDateTime
r512 QVector<SqpRange> m_Times;
Alexandre Leroux
Pass variable metadata as parameters of a request in a provider
r411 /// Extra data that can be used by the provider to retrieve data
QVariantHash m_Data;
Alexandre Leroux
Creates data provider parameters
r123 };
#endif // SCIQLOP_DATAPROVIDERPARAMETERS_H