##// END OF EJS Templates
Started to refactor the API to allow integrating different plot types
Started to refactor the API to allow integrating different plot types

File last commit:

r19:b231f8e5fa43
r19:b231f8e5fa43
Show More
dataseriedialog.h
21 lines | 369 B | text/x-c | CLexer
#ifndef DATASERIEDIALOG_H
#define DATASERIEDIALOG_H
#include <QDialog>
class QAbstractButton;
class DataSerieDialog : public QDialog
{
Q_OBJECT
public:
explicit DataSerieDialog(QWidget *parent = 0);
signals:
void addSeries(QString series);
public slots:
void addSeries(QAbstractButton *button);
};
#endif // DATASERIEDIALOG_H