mirror of
https://github.com/zhuzichu520/FluentUI.git
synced 2024-11-24 03:30:59 +08:00
18 lines
188 B
C++
18 lines
188 B
C++
#ifndef ZH_H
|
|
#define ZH_H
|
|
|
|
#include <QObject>
|
|
#include "Lang.h"
|
|
|
|
class Zh : public Lang
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit Zh(QObject *parent = nullptr);
|
|
|
|
signals:
|
|
|
|
};
|
|
|
|
#endif // ZH_H
|