summaryrefslogtreecommitdiffstats
path: root/tests/auto/tools/moc/signal-with-default-arg.h
blob: 32933289327954c8735d7fb7ea387a5a9bf9bc4d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Copyright (C) 2022 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0

#ifndef SIGNAL_WITH_DEFAULT_ARG_H
#define SIGNAL_WITH_DEFAULT_ARG_H

#include <QtCore/qobject.h>

class SignalWithDefaultArg : public QObject
{
    Q_OBJECT
signals:
    void signalWithDefaultArg(int i = 12);
};

#endif // SIGNAL_WITH_DEFAULT_ARG_H