mirror of
git://projects.qi-hardware.com/nn-usb-fpga.git
synced 2025-01-10 13:10:15 +02:00
33 lines
403 B
C
33 lines
403 B
C
|
#ifndef MAINWINDOW_H
|
||
|
#define MAINWINDOW_H
|
||
|
|
||
|
#include <QtGui/QMainWindow>
|
||
|
#include "ADCw.h"
|
||
|
|
||
|
namespace Ui
|
||
|
{
|
||
|
class MainWindow;
|
||
|
}
|
||
|
|
||
|
class MainWindow : public QMainWindow
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
MainWindow(QWidget *parent = 0);
|
||
|
~MainWindow();
|
||
|
|
||
|
public slots:
|
||
|
void updateGraph();
|
||
|
|
||
|
signals:
|
||
|
void refresh();
|
||
|
|
||
|
private:
|
||
|
Ui::MainWindow *ui;
|
||
|
QTimer *timer1;
|
||
|
ADCw *ADC1;
|
||
|
};
|
||
|
|
||
|
#endif // MAINWINDOW_H
|