##// END OF EJS Templates
the two bridges, Star Dundee and GRESB are fully functional
the two bridges, Star Dundee and GRESB are fully functional

File last commit:

r0:081a6eb3cced default
r10:74729fe49979 default
Show More
rmappluginpythonwrapper.cpp
19 lines | 365 B | text/x-c | CppLexer
/ rmapplugin / rmappluginpythonwrapper.cpp
#include "rmappluginpythonwrapper.h"
#include <math.h>
rmappluginPythonWrapper::rmappluginPythonWrapper(QObject *parent) :
genericPySysdriver(parent)
{
}
QList<QVariant> rmappluginPythonWrapper::getData()
{
QList<QVariant> data;
for (int i = 0; i<1024; i++)
{
QVariant t(1000*cos(0.1*i));
data.append(t);
}
return data;
}