Add CoreFeatures guard for hiding inactive networks
[quassel.git] / src / common / quassel.h
index de19313..b6fc378 100644 (file)
@@ -1,5 +1,5 @@
 /***************************************************************************
- *   Copyright (C) 2005-2013 by the Quassel Project                        *
+ *   Copyright (C) 2005-2014 by the Quassel Project                        *
  *   devel@quassel-irc.org                                                 *
  *                                                                         *
  *   This program is free software; you can redistribute it and/or modify  *
@@ -71,8 +71,10 @@ public:
     enum Feature {
         SynchronizedMarkerLine = 0x0001,
         SaslAuthentication = 0x0002,
+        SaslExternal = 0x0004,
+        HideInactiveNetworks = 0x0008,
 
-        NumFeatures = 0x0002
+        NumFeatures = 0x0008
     };
     Q_DECLARE_FLAGS(Features, Feature);