1/****************************************************************************
2**
3** Copyright (C) 2016 The Qt Company Ltd.
4** Contact: https://www.qt.io/licensing/
5**
6** This file is part of the test suite of the Qt Toolkit.
7**
8** $QT_BEGIN_LICENSE:GPL-EXCEPT$
9** Commercial License Usage
10** Licensees holding valid commercial Qt licenses may use this file in
11** accordance with the commercial license agreement provided with the
12** Software or, alternatively, in accordance with the terms contained in
13** a written agreement between you and The Qt Company. For licensing terms
14** and conditions see https://www.qt.io/terms-conditions. For further
15** information use the contact form at https://www.qt.io/contact-us.
16**
17** GNU General Public License Usage
18** Alternatively, this file may be used under the terms of the GNU
19** General Public License version 3 as published by the Free Software
20** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
21** included in the packaging of this file. Please review the following
22** information to ensure the GNU General Public License requirements will
23** be met: https://www.gnu.org/licenses/gpl-3.0.html.
24**
25** $QT_END_LICENSE$
26**
27****************************************************************************/
28#include "object.h"
29
30void Object::emitSignal0()
31{ emit signal0(); }
32void Object::emitSignal1()
33{ emit signal1(); }
34
35
36void Object::slot0()
37{ }
38void Object::slot1()
39{ }
40void Object::slot2()
41{ }
42void Object::slot3()
43{ }
44void Object::slot4()
45{ }
46void Object::slot5()
47{ }
48void Object::slot6()
49{ }
50void Object::slot7()
51{ }
52void Object::slot8()
53{ }
54void Object::slot9()
55{ }
56
57
58
59void ObjectW::emitSignal0()
60{ emit signal0(); }
61void ObjectW::emitSignal1()
62{ emit signal1(); }
63
64void ObjectW::slot0()
65{ }
66void ObjectW::slot1()
67{ }
68void ObjectW::slot2()
69{ }
70void ObjectW::slot3()
71{ }
72void ObjectW::slot4()
73{ }
74void ObjectW::slot5()
75{ }
76void ObjectW::slot6()
77{ }
78void ObjectW::slot7()
79{ }
80void ObjectW::slot8()
81{ }
82void ObjectW::slot9()
83{ }
84
85W_OBJECT_IMPL(ObjectW)
86