mirror of
https://github.com/crystalidea/qt6windows7.git
synced 2025-01-23 20:34:31 +08:00
31 lines
504 B
C++
31 lines
504 B
C++
// Copyright (C) 2016 The Qt Company Ltd.
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
|
|
#include "object.h"
|
|
|
|
void Object::emitSignal0()
|
|
{ emit signal0(); }
|
|
void Object::emitSignal1()
|
|
{ emit signal1(); }
|
|
|
|
|
|
void Object::slot0()
|
|
{ }
|
|
void Object::slot1()
|
|
{ }
|
|
void Object::slot2()
|
|
{ }
|
|
void Object::slot3()
|
|
{ }
|
|
void Object::slot4()
|
|
{ }
|
|
void Object::slot5()
|
|
{ }
|
|
void Object::slot6()
|
|
{ }
|
|
void Object::slot7()
|
|
{ }
|
|
void Object::slot8()
|
|
{ }
|
|
void Object::slot9()
|
|
{ }
|