##// END OF EJS Templates
Removes unit and mission from variable...
Removes unit and mission from variable This type of data will be managed in variable metadata

File last commit:

r388:83c2495f8eaf
r405:4fa51b091d97
Show More
AmdaProvider.h
38 lines | 1012 B | text/x-c | CLexer
Alexandre Leroux
Inits Amda provider
r377 #ifndef SCIQLOP_AMDAPROVIDER_H
#define SCIQLOP_AMDAPROVIDER_H
#include "AmdaGlobal.h"
#include <Common/spimpl.h>
#include <Data/IDataProvider.h>
#include <QLoggingCategory>
Q_DECLARE_LOGGING_CATEGORY(LOG_AmdaProvider)
Modify the AmdaProvider to remove from it all network controller...
r388 class QNetworkReply;
Alexandre Leroux
Inits Amda provider
r377 /**
* @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();
void requestDataLoading(QUuid token, const QVector<SqpDateTime> &dateTimeList) override;
private:
Modify the AmdaProvider to remove from it all network controller...
r388 void retrieveData(QUuid token, const DataProviderParameters &parameters);
Alexandre Leroux
Inits Amda provider
r377
class AmdaProviderPrivate;
spimpl::unique_impl_ptr<AmdaProviderPrivate> impl;
Alexandre Leroux
Amda provider (1)...
r378
Modify the AmdaProvider to remove from it all network controller...
r388 // private slots:
// void httpFinished(QNetworkReply *reply, QUuid dataId) noexcept;
// void httpDownloadFinished(QNetworkReply *reply, QUuid dataId) noexcept;
// void httpDownloadReadyRead(QNetworkReply *reply, QUuid dataId) noexcept;
Alexandre Leroux
Inits Amda provider
r377 };
#endif // SCIQLOP_AMDAPROVIDER_H