summaryrefslogtreecommitdiffstats
path: root/src/qdoc/qdoc/tests/validateqdocoutputfiles/testdata/qmlenumvaluesfromcpp/src/class.h
blob: 8c4967a69fcc5d4fc1fa87d661a5b1cd9c74bc3d (plain)
1
2
3
4
5
6
7
8
9
10
// Copyright (C) 2024 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
#pragma once

class Class {

public:
    enum Values { One, Two, Three };
    enum class MoreValues { Something, Else };
};