1 | // SPDX-FileCopyrightText: 2023 UnionTech Software Technology Co., Ltd. |
---|---|
2 | // |
3 | // SPDX-License-Identifier: GPL-3.0-or-later |
4 | |
5 | #include "commandproxy.h" |
6 | |
7 | void CommandProxy::initialize() |
8 | { |
9 | qInfo() << __FUNCTION__; |
10 | } |
11 | |
12 | bool CommandProxy::start() |
13 | { |
14 | qInfo() << __FUNCTION__; |
15 | return true; |
16 | } |
17 | |
18 | dpf::Plugin::ShutdownFlag CommandProxy::stop() |
19 | { |
20 | qInfo() << __FUNCTION__; |
21 | return Sync; |
22 | } |
23 |