* 1/3 Add .clang-format file and travis compilation check * 2/3 Run clang-format * 3/3 Fix compilation problems due to include reordering * 3bis/3 AfterControlStatement: false
21 lines
365 B
C++
21 lines
365 B
C++
#ifndef MAIN_H
|
|
#define MAIN_H
|
|
|
|
class CardDatabase;
|
|
class QString;
|
|
class QSystemTrayIcon;
|
|
class QTranslator;
|
|
class SoundEngine;
|
|
|
|
extern CardDatabase *db;
|
|
|
|
extern QSystemTrayIcon *trayIcon;
|
|
extern QTranslator *translator;
|
|
extern const QString translationPrefix;
|
|
extern QString translationPath;
|
|
|
|
void installNewTranslator();
|
|
|
|
QString const generateClientID();
|
|
|
|
#endif
|