You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
345 B
C++
25 lines
345 B
C++
// Copyright (C) 2023 The Qt Company Ltd.
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
|
|
|
|
#include "cgooglefonts.h"
|
|
#include <QString>
|
|
|
|
|
|
cGoogleFonts::cGoogleFonts()
|
|
{
|
|
}
|
|
|
|
cGoogleFonts::~cGoogleFonts()
|
|
{
|
|
}
|
|
|
|
QString cGoogleFonts::name()
|
|
{
|
|
return tr("Google Fonts");
|
|
}
|
|
|
|
QString cGoogleFonts::version()
|
|
{
|
|
return tr("0.1");
|
|
}
|