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

File last commit:

r380:0a12bde5fff2
r385:0ec770a1fa8f merge
Show More
AmdaProvider.h
28 lines | 648 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();
Alexandre Leroux
Updates IDataProvider::requestDataLoading() method's signature...
r375 void requestDataLoading(QUuid token, const DataProviderParameters &parameters) override;
Alexandre Leroux
Inits Amda provider
r348
private:
Alexandre Leroux
Amda provider update (2)...
r380 void retrieveData(QUuid token, const SqpDateTime &dateTime, const QVariantHash &data);
Alexandre Leroux
Inits Amda provider
r348 };
#endif // SCIQLOP_AMDAPROVIDER_H