1 | // SPDX-FileCopyrightText: 2023 UnionTech Software Technology Co., Ltd. |
---|---|
2 | // |
3 | // SPDX-License-Identifier: GPL-3.0-or-later |
4 | |
5 | #ifndef BUILDERINTERFACE_H |
6 | #define BUILDERINTERFACE_H |
7 | |
8 | #include "builderglobals.h" |
9 | #include <framework/framework.h> |
10 | |
11 | class BuilderInterface |
12 | { |
13 | public: |
14 | /*! |
15 | * \brief builderCommand |
16 | * \param commandInfo |
17 | */ |
18 | DPF_INTERFACE(bool, builderCommand, const QList<BuildCommandInfo> &commandInfo, bool isSynchronous); |
19 | }; |
20 | |
21 | #endif // BUILDERINTERFACE_H |
22 |