##// END OF EJS Templates
Removed bad dependency between VC and VariableModel, moved mime stuff...
Removed bad dependency between VC and VariableModel, moved mime stuff from VC to static Variable methods Signed-off-by: Alexis Jeandet <alexis.jeandet@member.fsf.org>

File last commit:

r0:86b06c4cec3c
r27:c08d1b8ad297
Show More
AcquisitionDataPacket.h
25 lines | 686 B | text/x-c | CLexer
/ include / Data / AcquisitionDataPacket.h
First init from SciQLop Core module...
r0 #ifndef SCIQLOP_ACQUISITIONDATAPACKET_H
#define SCIQLOP_ACQUISITIONDATAPACKET_H
#include <QObject>
#include <Common/DateUtils.h>
#include <Common/MetaTypes.h>
#include <Data/IDataSeries.h>
#include <Data/DateTimeRange.h>
#include <memory>
/**
* @brief The AcquisitionDataPacket struct holds the information of an acquisition request result
* part.
*/
struct AcquisitionDataPacket {
std::shared_ptr<IDataSeries> m_DateSeries;
DateTimeRange m_Range;
};
SCIQLOP_REGISTER_META_TYPE(ACQUISITIONDATAPACKET_REGISTRY, AcquisitionDataPacket)
SCIQLOP_REGISTER_META_TYPE(ACQUISITIONDATAPACKETVECTOR_REGISTRY, QVector<AcquisitionDataPacket>)
#endif // SCIQLOP_ACQUISITIONREQUEST_H