mirror of
https://github.com/KDE/kasts.git
synced 2024-12-29 09:51:52 +01:00
35 lines
544 B
C++
35 lines
544 B
C++
/**
|
|
* SPDX-FileCopyrightText: 2020 Tobias Fella <fella@posteo.de>
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
|
|
*/
|
|
|
|
#include "author.h"
|
|
|
|
Author::Author(const QString &name, const QString &email, const QString &url, QObject *parent)
|
|
: QObject(parent)
|
|
, m_name(name)
|
|
, m_email(email)
|
|
, m_url(url)
|
|
{
|
|
}
|
|
|
|
Author::~Author()
|
|
{
|
|
}
|
|
|
|
QString Author::name() const
|
|
{
|
|
return m_name;
|
|
}
|
|
|
|
QString Author::email() const
|
|
{
|
|
return m_email;
|
|
}
|
|
|
|
QString Author::url() const
|
|
{
|
|
return m_url;
|
|
}
|