##// 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:

r825:4e3514f47cab
r1272:2f3864d52888
Show More
VariableRequest.h
26 lines | 586 B | text/x-c | CLexer
Add VariableRequest struc
r623 #ifndef SCIQLOP_VARIABLEREQUEST_H
#define SCIQLOP_VARIABLEREQUEST_H
#include <QObject>
#include <QUuid>
#include <Common/MetaTypes.h>
#include <Data/IDataSeries.h>
#include <Data/SqpRange.h>
#include <memory>
/**
* @brief The VariableRequest struct holds the information of an acquisition request
*/
struct VariableRequest {
Modify variable controller request managing with introduction of current
r825 QUuid m_VariableGroupId;
Add VariableRequest struc
r623 SqpRange m_RangeRequested;
SqpRange m_CacheRangeRequested;
std::shared_ptr<IDataSeries> m_DataSeries;
};
SCIQLOP_REGISTER_META_TYPE(VARIABLEREQUEST_REGISTRY, VariableRequest)
#endif // SCIQLOP_VARIABLEREQUEST_H