CosinusProvider.h
25 lines
| 659 B
| text/x-c
|
CLexer
Alexandre Leroux
|
r128 | #ifndef SCIQLOP_COSINUSPROVIDER_H | ||
#define SCIQLOP_COSINUSPROVIDER_H | ||||
Alexandre Leroux
|
r351 | #include "MockPluginGlobal.h" | ||
Alexandre Leroux
|
r128 | #include <Data/IDataProvider.h> | ||
r231 | #include <QLoggingCategory> | |||
Q_DECLARE_LOGGING_CATEGORY(LOG_CosinusProvider) | ||||
Alexandre Leroux
|
r128 | /** | ||
* @brief The CosinusProvider class is an example of how a data provider can generate data | ||||
*/ | ||||
Alexandre Leroux
|
r351 | class SCIQLOP_MOCKPLUGIN_EXPORT CosinusProvider : public IDataProvider { | ||
Alexandre Leroux
|
r128 | public: | ||
Alexandre Leroux
|
r408 | void requestDataLoading(QUuid token, const DataProviderParameters ¶meters) override; | ||
r231 | ||||
private: | ||||
r339 | /// @sa IDataProvider::retrieveData() | |||
Alexandre Leroux
|
r408 | std::shared_ptr<IDataSeries> retrieveData(const SqpDateTime &dateTime) const; | ||
Alexandre Leroux
|
r128 | }; | ||
#endif // SCIQLOP_COSINUSPROVIDER_H | ||||