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