##// END OF EJS Templates
Removed useless function in Variable class...
Removed useless function in Variable class Signed-off-by: Alexis Jeandet <alexis.jeandet@member.fsf.org>

File last commit:

r0:86b06c4cec3c
r29:ab4890d233e8
Show More
VariableRequest.h
26 lines | 601 B | text/x-c | CLexer
First init from SciQLop Core module...
r0 #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