##// END OF EJS Templates
Updates VariableModel::createVariable() method...
Updates VariableModel::createVariable() method - Stores variable as shared_ptr (maybe the variable may exist outside this controller) - Adds default data series for the variable - Returns the shared_ptr after variable creation

File last commit:

r128:59f921efd8e4
r165:81409bbf8178
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