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

#ifndef OTHEROBJECTTYPE_H
#define OTHEROBJECTTYPE_H

#include "libothermacros.h"
#include "objecttype.h"
#include "collector.h"
#include "samplenamespace.h"
#include "removednamespaces.h"

class LIBOTHER_API OtherObjectType : public ObjectType
{
public:
    static int enumAsInt(SampleNamespace::SomeClass::PublicScopedEnum value);
    static int enumAsIntForInvisibleNamespace(RemovedNamespace1::RemovedNamespace1_Enum value);
};

LIBOTHER_API Collector &operator<<(Collector &, const OtherObjectType &);

#endif // OTHEROBJECTTYPE_H