##// END OF EJS Templates
MultiComponent TS almost complete...
MultiComponent TS almost complete Signed-off-by: Alexis Jeandet <alexis.jeandet@member.fsf.org>

File last commit:

r1423:31110df2feb2
r1432:db5304cf6c8c
Show More
AmdaProvider.h
30 lines | 660 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>
Implementation of progression
r750 #include <map>
Alexandre Leroux
Inits Amda provider
r377
Q_DECLARE_LOGGING_CATEGORY(LOG_AmdaProvider)
Modify the AmdaProvider to remove from it all network controller...
r388 class QNetworkReply;
Implementation of progression
r750 class QNetworkRequest;
Modify the AmdaProvider to remove from it all network controller...
r388
Alexandre Leroux
Inits Amda provider
r377 /**
* @brief The AmdaProvider class is an example of how a data provider can generate data
*/
Ported MockPlugin to new Variable2 impl and added dummy python plugin...
r1423 class SCIQLOP_AMDA_EXPORT AmdaProvider : public IDataProvider
{
Implement progression for AmdaProvider.
r752 Q_OBJECT
Alexandre Leroux
Inits Amda provider
r377 public:
explicit AmdaProvider();
Alexandre Leroux
Generates and registers clone provider
r712 std::shared_ptr<IDataProvider> clone() const override;
Alexandre Leroux
Inits Amda provider
r377
Ported MockPlugin to new Variable2 impl and added dummy python plugin...
r1423 virtual TimeSeries::ITimeSerie* getData(const DataProviderParameters& parameters) override;
Alexandre Leroux
Inits Amda provider
r377 };
#endif // SCIQLOP_AMDAPROVIDER_H