##// END OF EJS Templates
Updates VariableController::createVariable() method...
Updates VariableController::createVariable() method - Adds signal that will be emitted when the variable has been created - Changes method's signature from Variable* to void (the variable is passed in the signal) - Generates default data (on 48 hours) from the provider

File last commit:

r128:59f921efd8e4
r166:ab6272d8de5a
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