Skip to content
Snippets Groups Projects
Commit 5da8247d authored by Joseph Mirabel's avatar Joseph Mirabel Committed by Joseph Mirabel
Browse files

Bind QCPGraph::addData

parent b8c8d442
No related branches found
No related tags found
No related merge requests found
......@@ -121,6 +121,10 @@ class QCustomPlotDecorator : public QObject
{
g->addData(keys,values);
}
void addData (QCPGraph* g, const double &key, const double &value)
{
g->addData(key,value);
}
void clearData (QCPGraph* o) { o->clearData (); }
/// \}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment