##// END OF EJS Templates
Updates UI to not call the sort method when update graphs, as data series are already sorted
Updates UI to not call the sort method when update graphs, as data series are already sorted

File last commit:

r422:ff0aebb946e3
r453:a8d8791b7e7a
Show More
AmdaProvider.h
30 lines | 706 B | text/x-c | CLexer
Alexandre Leroux
Inits Amda provider
r377 #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...
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();
Alexandre Leroux
Updates IDataProvider::requestDataLoading() method's signature...
r408 void requestDataLoading(QUuid token, const DataProviderParameters &parameters) override;
Alexandre Leroux
Inits Amda provider
r377
Implement of the abort download process
r422 void requestDataAborting(QUuid identifier) override;
Alexandre Leroux
Inits Amda provider
r377 private:
Alexandre Leroux
Amda provider update (2)...
r413 void retrieveData(QUuid token, const SqpDateTime &dateTime, const QVariantHash &data);
Alexandre Leroux
Inits Amda provider
r377 };
#endif // SCIQLOP_AMDAPROVIDER_H