##// END OF EJS Templates
Corrects the problem of refreshing synchronized graphs from TimeWidget (2)...
Corrects the problem of refreshing synchronized graphs from TimeWidget (2) - During rescale, acquisition is disabled but synchronization is still enabled - Corrects calibration mode that wasn't always reset to false

File last commit:

r512:d00d6fd96c10
r1272:2f3864d52888
Show More
DataProviderParameters.h
18 lines | 491 B | text/x-c | CLexer
/ core / include / Data / DataProviderParameters.h
#ifndef SCIQLOP_DATAPROVIDERPARAMETERS_H
#define SCIQLOP_DATAPROVIDERPARAMETERS_H
#include "SqpRange.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<SqpRange> m_Times;
/// Extra data that can be used by the provider to retrieve data
QVariantHash m_Data;
};
#endif // SCIQLOP_DATAPROVIDERPARAMETERS_H