mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-24 15:18:07 +00:00
16 lines
233 B
C++
16 lines
233 B
C++
#ifndef APP_H_
|
|
#define APP_H_
|
|
|
|
#include <QApplication>
|
|
#include <QTranslator>
|
|
|
|
class App : public QApplication {
|
|
public:
|
|
App (int &argc, char **argv);
|
|
virtual ~App () {}
|
|
|
|
private:
|
|
QTranslator m_translator;
|
|
};
|
|
|
|
#endif // APP_H_
|