2022-08-19 15:59:36 +02:00
|
|
|
// Copyright (C) 2018 The Qt Company Ltd.
|
2023-01-04 08:52:22 +01:00
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
|
2018-02-15 11:31:14 +01:00
|
|
|
|
|
|
|
// llvm-header-guard
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
// google-build-using-namespace, google-global-names-in-headers
|
|
|
|
using namespace std;
|
|
|
|
|
|
|
|
// cert-dcl59-cpp, google-build-namespaces
|
|
|
|
namespace {
|
|
|
|
class HeaderClass {
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
} // llvm-namespace-comment
|