mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-06-10 16:24:45 -07:00
32 lines
574 B
C++
32 lines
574 B
C++
/**
|
|
* @file main.h
|
|
* @ingroup Core
|
|
*/
|
|
//! \todo Document this file.
|
|
|
|
#ifndef MAIN_H
|
|
#define MAIN_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
|