216e1a9f71
Commit the original Caesium 1.7.0 codebase with some adjustment. You can also get the original source at: https://sourceforge.net/projects/caesium/files/1.7.0/ Since the file names listed in the Qt resource file have encoding issue which can cause compile failure, these files get removed. Adjustments: + .gitignore M icons.qrc - *.pro.user(.*) - icons/language/*.png
15 lines
291 B
C
15 lines
291 B
C
#ifndef GLOBAL_H
|
|
#define GLOBAL_H
|
|
|
|
#include <QString>
|
|
#include <QSettings>
|
|
|
|
extern QSettings settings;
|
|
extern QString out_folder;
|
|
extern bool same_folder_flag;
|
|
extern const int version_build;
|
|
extern const QString version_string;
|
|
extern QString opened_list;
|
|
|
|
#endif // GLOBAL_H
|