aboutsummaryrefslogtreecommitdiffstats
path: root/sources/shiboken6/tests/libsample/null.h
blob: 9a618095cd0c0d9f89bed099d6c1907b613bfb78 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// 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 NULL_H
#define NULL_H

class Null
{
public:
    Null(bool value) : m_isNull(value) {}
    Null() : m_isNull(false) {}
    void setIsNull(bool flag) { m_isNull = flag; }

private:
    bool m_isNull;
};

#endif // STR_H