aboutsummaryrefslogtreecommitdiffstats
path: root/doc/tutorials/AddressBook/adddialog.h
blob: 296433c97547545e50af7ce89d50e20047e19101 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/***************************************************************************************************
 Copyright (C) 2024 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();
};