aboutsummaryrefslogtreecommitdiffstats
path: root/sources/shiboken6/ApiExtractor/varargstypeentry.h
blob: b2a4f4d303e5ca91bf83a13fdc9136c78eea7ea8 (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 VARARGSTYPEENTRY_H
#define VARARGSTYPEENTRY_H

#include "typesystem.h"

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

    TypeEntry *clone() const override;

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

#endif // VARARGSTYPEENTRY_H