28 lines
555 B
C++
28 lines
555 B
C++
//SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.
|
|
//
|
|
//SPDX-License-Identifier: GPL-3.0-or-later
|
|
//SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.
|
|
//
|
|
//SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
#include "applaunchcontext.h"
|
|
|
|
AppLaunchContext::AppLaunchContext()
|
|
: m_count(0)
|
|
, m_timestamp(0)
|
|
{
|
|
|
|
}
|
|
|
|
// TODO
|
|
std::string AppLaunchContext::getStartupNotifyId(const DesktopInfo *info, std::vector<std::string> files)
|
|
{
|
|
|
|
}
|
|
|
|
// TODO
|
|
void AppLaunchContext::launchFailed(std::string startupNotifyId)
|
|
{
|
|
|
|
}
|