##// END OF EJS Templates
PySide2 bindings + some GUI clean...
PySide2 bindings + some GUI clean - simple Python plugin with scalar product works - launcher args are forwarded to SciQLop app, this allow to choose between wayland and xcb for example - removed all not implemented widgets on main GUI - moved all widgets except plots into QDocWidgets Signed-off-by: Alexis Jeandet <alexis.jeandet@member.fsf.org>

File last commit:

r1352:fb8f470a1906
r1478:6e3f56cd8c8b
Show More
GenericWSEngine.h
26 lines | 625 B | text/x-c | CLexer
#ifndef GENERICWSENGINE_H
#define GENERICWSENGINE_H
#include <Data/IDataProvider.h>
#include <Data/DataProviderParameters.h>
class GenericWSEngine: public IDataProvider
{
public:
virtual std::shared_ptr<IDataProvider> clone() const override
{
return std::make_shared<GenericWSEngine>();
}
virtual IDataSeries* getData(const DataProviderParameters &parameters) override
{
auto range = parameters.m_Range;
auto metadata = parameters.m_Data;
auto WS = metadata["WS"].toString();
auto parameter = metadata["WS"].toString();
return nullptr;
}
};
#endif