Initial commit of mtgonline project
This commit is contained in:
@@ -0,0 +1,32 @@
|
||||
/**
|
||||
* @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
|
||||
Reference in New Issue
Block a user