##// END OF EJS Templates
Removes the default tab from .ui and adds it manually...
Removes the default tab from .ui and adds it manually This allows to generate a default name for the tab

File last commit:

r128:59f921efd8e4
r199:0f1ccb97ea85
Show More
CosinusProvider.h
16 lines | 446 B | text/x-c | CLexer
Alexandre Leroux
Creates a default provider that will be returned by the mock plugin
r128 #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