32 lines
548 B
C++
32 lines
548 B
C++
#ifndef DERREP2014QPLOT_H
|
|
#define DERREP2014QPLOT_H
|
|
|
|
#include <QWidget>
|
|
#include <QImage>
|
|
#include <QPainter>
|
|
#include <qmath.h>
|
|
#include <QMouseEvent>
|
|
#include <QVector>
|
|
#include <iostream>
|
|
#include "Kolch_Shind/qcustomplot.h"
|
|
|
|
class DerRep2014QPlot : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit DerRep2014QPlot(QWidget *parent = 0);
|
|
|
|
signals:
|
|
|
|
|
|
public slots:
|
|
void drawGraphics(QCustomPlot *customPlot);
|
|
void drawSepGenderGraphics(QCustomPlot *customPlot);
|
|
|
|
private:
|
|
|
|
|
|
};
|
|
|
|
#endif // DERREP2014QPLOT_H
|