summaryrefslogtreecommitdiffstats
path: root/tests/auto/tools/moc/signal-with-default-arg.h
blob: 3fd98712eb67e4d94b124b0c031f0b897b9f547e (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

#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