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

#include "sbkdate.h"

SbkDate::SbkDate(int d, int m, int y) : m_d(d), m_m(m), m_y(y)
{
}

int SbkDate::day() const
{
    return m_d;
}

int SbkDate::month() const
{
    return m_m;
}

int SbkDate::year() const
{
    return m_y;
}