##// END OF EJS Templates
Add satic method to compute vector of in or not in ranges between...
Add satic method to compute vector of in or not in ranges between two ranges

File last commit:

r623:a4c03aae7d7b
r816:97f935302b90
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