05fc3aef53
Replace the current license disclaimer in files by a SPDX-License-Identifier. Files that have to be modified by hand are modified. License files are organized under LICENSES directory. Task-number: QTBUG-67283 Change-Id: Id880c92784c40f3bbde861c0d93f58151c18b9f1 Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org> Reviewed-by: Lars Knoll <lars.knoll@qt.io> Reviewed-by: Jörg Bornemann <joerg.bornemann@qt.io>
25 lines
768 B
C++
25 lines
768 B
C++
// 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
|