File indexing completed on 2024-05-12 16:21:27

0001 /**
0002  * SPDX-FileCopyrightText: 2020 Tobias Fella <tobias.fella@kde.org>
0003  *
0004  * SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
0005  */
0006 
0007 #include "author.h"
0008 
0009 Author::Author(const QString &name, const QString &email, const QString &url, QObject *parent)
0010     : QObject(parent)
0011     , m_name(name)
0012     , m_email(email)
0013     , m_url(url)
0014 {
0015 }
0016 
0017 Author::~Author()
0018 {
0019 }
0020 
0021 QString Author::name() const
0022 {
0023     return m_name;
0024 }
0025 
0026 QString Author::email() const
0027 {
0028     return m_email;
0029 }
0030 
0031 QString Author::url() const
0032 {
0033     return m_url;
0034 }