#ifndef SCIQLOP_VARIABLEREQUEST_H #define SCIQLOP_VARIABLEREQUEST_H #include #include #include #include #include #include /** * @brief The VariableRequest struct holds the information of an acquisition request */ struct VariableRequest { QUuid m_VariableGroupId; SqpRange m_RangeRequested; SqpRange m_CacheRangeRequested; std::shared_ptr m_DataSeries; }; SCIQLOP_REGISTER_META_TYPE(VARIABLEREQUEST_REGISTRY, VariableRequest) #endif // SCIQLOP_VARIABLEREQUEST_H