##// END OF EJS Templates
Started PySide2 migration, builds with CMake and produces a working binary...
Started PySide2 migration, builds with CMake and produces a working binary Need to port all previous stuff from Pybind11 to PySide2/shboken Signed-off-by: Alexis Jeandet <alexis.jeandet@member.fsf.org>

File last commit:

r1477:70de8bd3d575
r1477:70de8bd3d575
Show More
PyDataProvider.h
16 lines | 362 B | text/x-c | CLexer
#pragma once
#include <Data/IDataProvider.h>
class PyDataProvider : public IDataProvider
{
public:
PyDataProvider() {}
virtual TimeSeries::ITimeSerie getData(const std::string& key, double start_time, double stop_time)
{}
virtual TimeSeries::ITimeSerie* getData(const DataProviderParameters& parameters)
{
return nullptr;
}
};