kasts/src/author.cpp

35 lines
544 B
C++
Raw Normal View History

2020-05-26 16:32:07 +02:00
/**
2020-08-14 20:56:04 +02:00
* SPDX-FileCopyrightText: 2020 Tobias Fella <fella@posteo.de>
2020-05-26 16:32:07 +02:00
*
2020-08-14 20:56:04 +02:00
* SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
2020-05-26 16:32:07 +02:00
*/
#include "author.h"
2020-11-01 13:18:11 +01:00
Author::Author(const QString &name, const QString &email, const QString &url, QObject *parent)
2020-05-26 16:32:07 +02:00
: 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;
}