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

#pragma once

#include <QDialog>
#include "ui_adddialog.h"

class AddDialog : public QDialog, public Ui::AddDialog
{
    Q_OBJECT

public:
    AddDialog(QWidget *parent = nullptr);
    ~AddDialog();
};