##// END OF EJS Templates
Removed useless function in Variable class...
Removed useless function in Variable class Signed-off-by: Alexis Jeandet <alexis.jeandet@member.fsf.org>

File last commit:

r0:86b06c4cec3c
r29:ab4890d233e8
Show More
DataProviderParameters.h
18 lines | 501 B | text/x-c | CLexer
/ include / Data / DataProviderParameters.h
#ifndef SCIQLOP_DATAPROVIDERPARAMETERS_H
#define SCIQLOP_DATAPROVIDERPARAMETERS_H
#include "DateTimeRange.h"
/**
* @brief The DataProviderParameters struct holds the information needed to retrieve data from a
* data provider
* @sa IDataProvider
*/
struct DataProviderParameters {
/// Times for which retrieve data
QVector<DateTimeRange> m_Times;
/// Extra data that can be used by the provider to retrieve data
QVariantHash m_Data;
};
#endif // SCIQLOP_DATAPROVIDERPARAMETERS_H