Add some more wrapper methods in Icon
[quassel.git] / src / uisupport / icon.h
index 7ca1844..2586f82 100644 (file)
 class Icon : public QIcon {
 
   public:
-    //explicit Icon();
+    Icon();
     explicit Icon(const QString &iconName);
+    explicit Icon(const QIcon& copy);
+
+    Icon& operator=(const Icon &other);
 };
 
 #endif