##// END OF EJS Templates
Merge branch 'feature/UpdateArrayDataStruct' into develop
Merge branch 'feature/UpdateArrayDataStruct' into develop

File last commit:

r510:7c107b5923b0
r605:340220774853 merge
Show More
AmdaProvider.h
30 lines | 714 B | text/x-c | CLexer
Alexandre Leroux
Inits Amda provider
r348 #ifndef SCIQLOP_AMDAPROVIDER_H
#define SCIQLOP_AMDAPROVIDER_H
#include "AmdaGlobal.h"
#include <Data/IDataProvider.h>
#include <QLoggingCategory>
Q_DECLARE_LOGGING_CATEGORY(LOG_AmdaProvider)
Modify the AmdaProvider to remove from it all network controller...
r358 class QNetworkReply;
Alexandre Leroux
Inits Amda provider
r348 /**
* @brief The AmdaProvider class is an example of how a data provider can generate data
*/
class SCIQLOP_AMDA_EXPORT AmdaProvider : public IDataProvider {
public:
explicit AmdaProvider();
Implementation of V5 acquisition
r510 void requestDataLoading(QUuid acqIdentifier, const DataProviderParameters &parameters) override;
Alexandre Leroux
Inits Amda provider
r348
Implementation of V5 acquisition
r510 void requestDataAborting(QUuid acqIdentifier) override;
Implement of the abort download process
r388
Alexandre Leroux
Inits Amda provider
r348 private:
Change SqpRange for SqpDateTime
r471 void retrieveData(QUuid token, const SqpRange &dateTime, const QVariantHash &data);
Alexandre Leroux
Inits Amda provider
r348 };
#endif // SCIQLOP_AMDAPROVIDER_H