##// END OF EJS Templates
Notifies view when a variable is added to the model
Notifies view when a variable is added to the model

File last commit:

r128:59f921efd8e4
r153:1e9e83c4ae20
Show More
CosinusProvider.h
16 lines | 446 B | text/x-c | CLexer
#ifndef SCIQLOP_COSINUSPROVIDER_H
#define SCIQLOP_COSINUSPROVIDER_H
#include <Data/IDataProvider.h>
/**
* @brief The CosinusProvider class is an example of how a data provider can generate data
*/
class CosinusProvider : public IDataProvider {
public:
/// @sa IDataProvider::retrieveData()
std::unique_ptr<IDataSeries>
retrieveData(const DataProviderParameters &parameters) const override;
};
#endif // SCIQLOP_COSINUSPROVIDER_H