@@ -0,0 +1,25 | |||
|
1 | #ifndef SCIQLOP_IDATAPROVIDER_H | |
|
2 | #define SCIQLOP_IDATAPROVIDER_H | |
|
3 | ||
|
4 | #include <memory> | |
|
5 | ||
|
6 | class DataProviderParameters; | |
|
7 | class IDataSeries; | |
|
8 | ||
|
9 | /** | |
|
10 | * @brief The IDataProvider interface aims to declare a data provider. | |
|
11 | * | |
|
12 | * A data provider is an entity that generates data and returns it according to various parameters | |
|
13 | * (time interval, product to retrieve the data, etc.) | |
|
14 | * | |
|
15 | * @sa IDataSeries | |
|
16 | */ | |
|
17 | class IDataProvider { | |
|
18 | public: | |
|
19 | virtual ~IDataProvider() noexcept = default; | |
|
20 | ||
|
21 | virtual std::unique_ptr<IDataSeries> | |
|
22 | retrieveData(const DataProviderParameters ¶meters) const = 0; | |
|
23 | }; | |
|
24 | ||
|
25 | #endif // SCIQLOP_IDATAPROVIDER_H |
General Comments 0
You need to be logged in to leave comments.
Login now