1// SPDX-FileCopyrightText: 2023 UnionTech Software Technology Co., Ltd.
2//
3// SPDX-License-Identifier: GPL-3.0-or-later
4
5#ifndef WINDOWSTYLE_H
6#define WINDOWSTYLE_H
7
8#include <QString>
9namespace support_file {
10
11struct WindowStyle
12{
13 static QString globalPath();
14 static QString userPath();
15};
16
17}
18#endif // WINDOWSTYLE_H
19