aboutsummaryrefslogtreecommitdiffstats
path: root/sources/shiboken6/tests/libsample/null.h
blob: 945a89fa29c1bec725d6ac32460a891c85ec2fec (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() = default;

    void setIsNull(bool flag) { m_isNull = flag; }

private:
    bool m_isNull = false;
};

#endif // NULL_H