mirror of
https://github.com/crystalidea/qt6windows7.git
synced 2025-07-08 02:17:43 +08:00
qt 6.5.1 original
This commit is contained in:
24
tests/auto/tools/moc/single-quote-digit-separator-n3781.h
Normal file
24
tests/auto/tools/moc/single-quote-digit-separator-n3781.h
Normal file
@ -0,0 +1,24 @@
|
||||
// Copyright (C) 2013 Klarälvdalens Datakonsult AB, a KDAB Group company, info@kdab.com, author Stephen Kelly <stephen.kelly@kdab.com>
|
||||
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
|
||||
|
||||
#ifndef SINGLE_QUOTE_DIGIT_SEPARATOR_N3781_H
|
||||
#define SINGLE_QUOTE_DIGIT_SEPARATOR_N3781_H
|
||||
|
||||
#include <QObject>
|
||||
|
||||
class KDAB : public QObject
|
||||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
// C++1y allows use of single quote as a digit separator, useful for large
|
||||
// numbers. http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2013/n3781.pdf
|
||||
// Ensure that moc does not get confused with this.
|
||||
enum Salaries {
|
||||
Steve
|
||||
#ifdef Q_MOC_RUN
|
||||
= 1'234'567
|
||||
#endif
|
||||
};
|
||||
Q_ENUMS(Salaries)
|
||||
};
|
||||
#endif // SINGLE_QUOTE_DIGIT_SEPARATOR_N3781_H
|
Reference in New Issue
Block a user