Introduce CtcpParser for CTCP-related event processing
[quassel.git] / src / core / coreircchannel.h
index ba41947..450fd58 100644 (file)
@@ -1,5 +1,5 @@
 /***************************************************************************
- *   Copyright (C) 2005-08 by the Quassel Project                          *
+ *   Copyright (C) 2005-2010 by the Quassel Project                        *
  *   devel@quassel-irc.org                                                 *
  *                                                                         *
  *   This program is free software; you can redistribute it and/or modify  *
 
 #include "ircchannel.h"
 
+#ifdef HAVE_QCA2
+#  include "cipher.h"
+#endif
+
 class CoreIrcChannel : public IrcChannel {
+  SYNCABLE_OBJECT
   Q_OBJECT
 
 public:
   CoreIrcChannel(const QString &channelname, Network *network);
+  virtual ~CoreIrcChannel();
 
   inline virtual const QMetaObject *syncMetaObject() const { return &IrcChannel::staticMetaObject; }
 
+#ifdef HAVE_QCA2
+  Cipher *cipher() const;
+  void setEncrypted(bool);
+#endif
+
   inline bool receivedWelcomeMsg() const { return _receivedWelcomeMsg; }
   inline void setReceivedWelcomeMsg() { _receivedWelcomeMsg = true; }
 
 private:
   bool _receivedWelcomeMsg;
+
+#ifdef HAVE_QCA2
+  mutable Cipher *_cipher;
+#endif
 };
 
 #endif //COREIRCCHANNEL_H