##// END OF EJS Templates
push method of worker return the id of the nextRange which is canceled
push method of worker return the id of the nextRange which is canceled

File last commit:

r582:a4c03aae7d7b
r584:d6648352006d
Show More
VariableRequest.h
28 lines | 627 B | text/x-c | CLexer
#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 {
VariableRequest() { m_CanUpdate = false; }
SqpRange m_RangeRequested;
SqpRange m_CacheRangeRequested;
std::shared_ptr<IDataSeries> m_DataSeries;
bool m_CanUpdate;
};
SCIQLOP_REGISTER_META_TYPE(VARIABLEREQUEST_REGISTRY, VariableRequest)
#endif // SCIQLOP_VARIABLEREQUEST_H