X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fcommon%2Fglobal.h;h=396336750d319471afbda532c1352bb219a3d591;hb=3ed7d3bb6e9123ff0aa77023b264a39d1f63bd90;hp=1c72f05e450daa37572bbe0b21f0fe3ddea22328;hpb=fd7c2c4a41b5bb9cffcfe7a8f86a28ab7f38ac27;p=quassel.git diff --git a/src/common/global.h b/src/common/global.h index 1c72f05e..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 5 - -//#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