##// END OF EJS Templates
Initial commit: rmapplugin fully operational with the GRESB Ethernet/SpaceWire bridge.
Initial commit: rmapplugin fully operational with the GRESB Ethernet/SpaceWire bridge.

File last commit:

r0:081a6eb3cced default
r0:081a6eb3cced 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;
}