remarkable_tool/main_window.cpp

14 lines
340 B
C++

#include "main_window.hpp"
#include "config.h"
#include <QLabel>
namespace duck {
MainWindow::MainWindow() {
setWindowTitle(APP_NAME);
QLabel* const main_label = new QLabel("Main label thing");
setCentralWidget(main_label);
main_label->setAlignment(Qt::AlignCenter);
}
MainWindow::~MainWindow() noexcept = default;
} //namespace duck