FSUDAQ_Qt6/mainWindow.C

20 lines
229 B
C++
Raw Normal View History

2023-04-11 11:13:23 -04:00
#include "mainWindow.h"
#include <QWidget>
#include <TH1.h>
2023-04-11 11:13:23 -04:00
MainWindow::MainWindow(QWidget *parent) : QMainWindow(parent){
setWindowTitle("FSU DAQ");
setGeometry(500, 100, 1000, 500);
2023-04-11 11:13:23 -04:00
}
MainWindow::~MainWindow(){
}