##// END OF EJS Templates
Separate the initialization of the properties of the graph of the update of the units of the graph....
Separate the initialization of the properties of the graph of the update of the units of the graph. The initialization of the properties is carried out when adding a variable in the graph, the update of the units is carried out when loading the data of this variable

File last commit:

r536:f50da583f835
r1254:41b7c6aab8be
Show More
AcquisitionDataPacket.h
25 lines | 676 B | text/x-c | CLexer
/ core / include / Data / AcquisitionDataPacket.h
#ifndef SCIQLOP_ACQUISITIONDATAPACKET_H
#define SCIQLOP_ACQUISITIONDATAPACKET_H
#include <QObject>
#include <Common/DateUtils.h>
#include <Common/MetaTypes.h>
#include <Data/IDataSeries.h>
#include <Data/SqpRange.h>
#include <memory>
/**
* @brief The AcquisitionDataPacket struct holds the information of an acquisition request result
* part.
*/
struct AcquisitionDataPacket {
std::shared_ptr<IDataSeries> m_DateSeries;
SqpRange m_Range;
};
SCIQLOP_REGISTER_META_TYPE(ACQUISITIONDATAPACKET_REGISTRY, AcquisitionDataPacket)
SCIQLOP_REGISTER_META_TYPE(ACQUISITIONDATAPACKETVECTOR_REGISTRY, QVector<AcquisitionDataPacket>)
#endif // SCIQLOP_ACQUISITIONREQUEST_H