aboutsummaryrefslogtreecommitdiffstats
path: root/doc/tutorial/AddressBook/adddialog.cpp
blob: 69f149781abf6102e93119794d26c9a524e70982 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Copyright (C) 2025 The Qt Company Ltd.
// SPDX-License-Identifier: BSD-3-Clause-Clear

#include "adddialog.h"

AddDialog::AddDialog(QWidget *parent)
    : QDialog(parent)
{
    setupUi(this);
}

AddDialog::~AddDialog()
{
}