##// END OF EJS Templates
Removed old Variable impl...
Removed old Variable impl Signed-off-by: Alexis Jeandet <alexis.jeandet@member.fsf.org>

File last commit:

r1351:d755f1f0a484
r1422:a323cf6b7201
Show More
AmdaProvider.h
30 lines | 649 B | text/x-c | CLexer
#ifndef SCIQLOP_AMDAPROVIDER_H
#define SCIQLOP_AMDAPROVIDER_H
#include "AmdaGlobal.h"
#include <Data/IDataProvider.h>
#include <QLoggingCategory>
#include <map>
Q_DECLARE_LOGGING_CATEGORY(LOG_AmdaProvider)
class QNetworkReply;
class QNetworkRequest;
/**
* @brief The AmdaProvider class is an example of how a data provider can generate data
*/
class SCIQLOP_AMDA_EXPORT AmdaProvider : public IDataProvider {
Q_OBJECT
public:
explicit AmdaProvider();
std::shared_ptr<IDataProvider> clone() const override;
virtual IDataSeries *getData(const DataProviderParameters &parameters)override;
};
#endif // SCIQLOP_AMDAPROVIDER_H