You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
405 B
23 lines
405 B
// SPDX-FileCopyrightText: 2024 UnionTech Software Technology Co., Ltd.
|
|
//
|
|
// SPDX-License-Identifier: LGPL-3.0-or-later
|
|
|
|
#include "dp4service.h"
|
|
|
|
using namespace dp4::service;
|
|
|
|
Dp4Service::Dp4Service(QObject *parent)
|
|
: QObject(parent)
|
|
{
|
|
QString test = tr("test");
|
|
}
|
|
|
|
QString Dp4Service::getToken()
|
|
{
|
|
return m_token;
|
|
}
|
|
|
|
void Dp4Service::setToken(const QString &token)
|
|
{
|
|
m_token = token;
|
|
}
|
|
|