##// END OF EJS Templates
Intialization of network controller
Intialization of network controller

File last commit:

r339:39fcfe63cb2d
r339:39fcfe63cb2d
Show More
CosinusProvider.h
24 lines | 684 B | text/x-c | CLexer
Alexandre Leroux
Creates a default provider that will be returned by the mock plugin
r128 #ifndef SCIQLOP_COSINUSPROVIDER_H
#define SCIQLOP_COSINUSPROVIDER_H
#include <Data/IDataProvider.h>
The cosinus provider can now handle data request
r231 #include <QLoggingCategory>
Q_DECLARE_LOGGING_CATEGORY(LOG_CosinusProvider)
Alexandre Leroux
Creates a default provider that will be returned by the mock plugin
r128 /**
* @brief The CosinusProvider class is an example of how a data provider can generate data
*/
class CosinusProvider : public IDataProvider {
public:
The cosinus provider can now handle data request
r231 void requestDataLoading(const QVector<SqpDateTime> &dateTimeList) override;
private:
Intialization of network controller
r339 /// @sa IDataProvider::retrieveData()
std::shared_ptr<IDataSeries> retrieveData(const DataProviderParameters &parameters) const;
The cosinus provider can now handle data request
r231 std::shared_ptr<IDataSeries> retrieveDataSeries(const SqpDateTime &dateTime);
Alexandre Leroux
Creates a default provider that will be returned by the mock plugin
r128 };
#endif // SCIQLOP_COSINUSPROVIDER_H