##// END OF EJS Templates
(•̀ᴗ•́)و ̑̑ Some cleaning, remover previous implementation of VariableController...
(•̀ᴗ•́)و ̑̑ Some cleaning, remover previous implementation of VariableController and related classes Signed-off-by: Alexis Jeandet <alexis.jeandet@member.fsf.org>

File last commit:

r0:86b06c4cec3c
r26:de55e7be9096
Show More
VariableRequest.h
26 lines | 601 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/DateTimeRange.h>
#include <memory>
/**
* @brief The VariableRequest struct holds the information of an acquisition request
*/
struct VariableRequest {
QUuid m_VariableGroupId;
DateTimeRange m_RangeRequested;
DateTimeRange m_CacheRangeRequested;
std::shared_ptr<IDataSeries> m_DataSeries;
};
SCIQLOP_REGISTER_META_TYPE(VARIABLEREQUEST_REGISTRY, VariableRequest)
#endif // SCIQLOP_VARIABLEREQUEST_H