Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-02-21 10:12:24

0001 // Copyright (C) 2016 The Qt Company Ltd.
0002 // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
0003 
0004 #ifndef QTESTSPONTANEEVENT_H
0005 #define QTESTSPONTANEEVENT_H
0006 
0007 #include <QtCore/qcoreevent.h>
0008 
0009 #if 0
0010 // inform syncqt
0011 #pragma qt_no_master_include
0012 #endif
0013 
0014 QT_BEGIN_NAMESPACE
0015 
0016 class QSpontaneKeyEvent
0017 {
0018 public:
0019     static inline void setSpontaneous(QEvent *ev)
0020     {
0021         ev->setSpontaneous();
0022     }
0023 };
0024 
0025 QT_END_NAMESPACE
0026 
0027 #endif