##// END OF EJS Templates
Show tracers method (1)...
Show tracers method (1) Gets the closest point to the mouse and constructs the text that will be displayed

File last commit:

r411:1232f5544b57
r483:3d0f23bd071b
Show More
DataProviderParameters.h
18 lines | 497 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
Pass variable metadata as parameters of a request in a provider
r411 /// Times for which retrieve data
Alexandre Leroux
Updates IDataProvider::requestDataLoading() method's signature...
r408 QVector<SqpDateTime> 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