##// END OF EJS Templates
- Changes the way to retrieve unit in AMDA result file: The generated header in the result file differs from the first version...
- Changes the way to retrieve unit in AMDA result file: The generated header in the result file differs from the first version - Changes how to handle comment lines in file: Some comment lines do not have '#', so we now consider comments to end when the header of the data has been reached

File last commit:

r623:a4c03aae7d7b
r774:c9e284499782
Show More
VariableRequest.h
28 lines | 627 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/SqpRange.h>
#include <memory>
/**
* @brief The VariableRequest struct holds the information of an acquisition request
*/
struct VariableRequest {
VariableRequest() { m_CanUpdate = false; }
SqpRange m_RangeRequested;
SqpRange m_CacheRangeRequested;
std::shared_ptr<IDataSeries> m_DataSeries;
bool m_CanUpdate;
};
SCIQLOP_REGISTER_META_TYPE(VARIABLEREQUEST_REGISTRY, VariableRequest)
#endif // SCIQLOP_VARIABLEREQUEST_H