X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fcommon%2Fglobal.h;h=396336750d319471afbda532c1352bb219a3d591;hb=2ef87aa6bfc05e76fb46cde4d9ed50975f70040c;hp=dadbb91f6f3a771ed9ded35eb8334ba87ee35c24;hpb=21d8d7f0a79eeeb541664aa80ce481fdbfc41f09;p=quassel.git diff --git a/src/common/global.h b/src/common/global.h index dadbb91f..39633675 100644 --- a/src/common/global.h +++ b/src/common/global.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005 by the Quassel Project * + * Copyright (C) 2005-08 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -28,14 +28,22 @@ // Enable some shortcuts and stuff //#define DEVELMODE -/** The protocol version we use fo the communication between core and GUI */ -#define GUI_PROTOCOL 4 - -//#define DEFAULT_PORT 4242 - /* Some global stuff */ namespace Global { + + extern QString quasselVersion; + extern QString quasselDate; + extern uint quasselBuild; + + //! Minimum client build number the core needs + extern uint clientBuildNeeded; + extern QString clientVersionNeeded; + + //! Minimum core build number the client needs + extern uint coreBuildNeeded; + extern QString coreVersionNeeded; + // We need different config (QSettings) files for client and gui, since the core cannot work with GUI types // Set these here. They're used in ClientSettings and CoreSettings. const QString coreApplicationName = "Quassel Core"; @@ -46,6 +54,6 @@ namespace Global { extern unsigned int defaultPort; void registerMetaTypes(); -} +}; #endif