##// END OF EJS Templates
Changes structure of data hold by the item...
Changes structure of data hold by the item - The data are now set as a QHash instead of a QVector. Each data has a QVariant value and is associated to a key - Changes the constructor and adds a constructor that takes only a name

File last commit:

r177:e7b5abd4403a
r315:2fbf66a7ca8a
Show More
DataProviderParameters.h
15 lines | 355 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
Add SqpDateTime struct
r177 #include "SqpDateTime.h"
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 {
Add SqpDateTime struct
r177 SqpDateTime m_Time;
Alexandre Leroux
Creates data provider parameters
r115 };
#endif // SCIQLOP_DATAPROVIDERPARAMETERS_H