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

#ifndef CTPARAM_H
#define CTPARAM_H

#include "libsamplemacros.h"

namespace SampleNamespace
{

class LIBSAMPLE_API CtParam
{
public:
    explicit CtParam(int value);
    virtual ~CtParam();

    int value() const;

private:
    int m_value;
};

} // namespace SampleNamespace

#endif // CTPARAM_H