Files
adhd/mainwindow.cpp
T
2026-01-31 16:42:22 -08:00

14 lines
314 B
C++

#include "mainwindow.h"
#include <QLabel>
MainWindow::MainWindow(QWidget *parent) : QMainWindow(parent)
{
QWidget *centralWidget = new QWidget(this);
QLabel *label = new QLabel(centralWidget);
label->setText("Let's get some stuff done!");
setCentralWidget(centralWidget);
}
MainWindow::~MainWindow() {}