##// END OF EJS Templates
Amda provider cleaning...
Amda provider cleaning Removes unnecessary private impl

File last commit:

r376:c01bd18b5f57
r376:c01bd18b5f57
Show More
AmdaProvider.h
28 lines | 622 B | text/x-c | CLexer
#ifndef SCIQLOP_AMDAPROVIDER_H
#define SCIQLOP_AMDAPROVIDER_H
#include "AmdaGlobal.h"
#include <Data/IDataProvider.h>
#include <QLoggingCategory>
Q_DECLARE_LOGGING_CATEGORY(LOG_AmdaProvider)
class QNetworkReply;
/**
* @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 DataProviderParameters &parameters) override;
private:
void retrieveData(QUuid token, const SqpDateTime &dateTime);
};
#endif // SCIQLOP_AMDAPROVIDER_H