aboutsummaryrefslogtreecommitdiffstats
path: root/sources/shiboken6/ApiExtractor/voidtypeentry.h
blob: 372c7c01f6532afdfc8df5ea2b1606e23a1e741a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// Copyright (C) 2022 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0

#ifndef VOIDTYPEENTRY_H
#define VOIDTYPEENTRY_H

#include "typesystem.h"

class VoidTypeEntry : public TypeEntry
{
public:
    VoidTypeEntry();

    TypeEntry *clone() const override;

protected:
    explicit VoidTypeEntry(TypeEntryPrivate *d);
};

#endif // VOIDTYPEENTRY_H