mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-07-14 14:32:15 -07:00
* Sort *every* file into a doxygen group. Took 7 hours 9 minutes Took 18 seconds Took 2 minutes * Lint some ingroup definitions. Took 10 minutes Took 2 seconds * Just include the groups in the Doxyfile in this commit. Took 3 minutes * Update some group comments so they link! Took 14 minutes --------- Co-authored-by: Lukas Brübach <Bruebach.Lukas@bdosecurity.de>
34 lines
604 B
C++
34 lines
604 B
C++
/**
|
|
* @file main.h
|
|
* @ingroup Core
|
|
* @brief TODO: Document this.
|
|
*/
|
|
|
|
#ifndef MAIN_H
|
|
#define MAIN_H
|
|
|
|
#include "utility/macros.h"
|
|
|
|
#include <QLoggingCategory>
|
|
|
|
inline Q_LOGGING_CATEGORY(MainLog, "main");
|
|
inline Q_LOGGING_CATEGORY(QtTranslatorDebug, "qt_translator");
|
|
|
|
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
|