1// SPDX-FileCopyrightText: 2023 UnionTech Software Technology Co., Ltd.
2//
3// SPDX-License-Identifier: GPL-3.0-or-later
4
5#ifndef CONSTANTS_H
6#define CONSTANTS_H
7
8#include <QString>
9/**
10*
11* Write global contants here.
12*/
13
14int default_max_char_count();
15QString version();
16
17#endif // CONSTANTS_H
18