File: mainwindow.cpp

package info (click to toggle)
peony-extensions 3.2.4-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 776 kB
  • sloc: cpp: 3,869; sh: 23; makefile: 4
file content (17 lines) | stat: -rw-r--r-- 288 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include "mainwindow.h"
#include "ui_mainwindow.h"
#include "computer-view.h"

MainWindow::MainWindow(QWidget *parent)
    : QMainWindow(parent)
    , ui(new Ui::MainWindow)
{
    ui->setupUi(this);
    setCentralWidget(new ComputerView);
}

MainWindow::~MainWindow()
{
    delete ui;
}