Remove unneeded but error-prone copy ctor and assignment operator
[quassel.git] / src / common / cliparser.h
index 3927df7..53eaed8 100644 (file)
@@ -36,9 +36,7 @@ public:
   typedef CliArgType CliArgTypes;
   
   inline CliParserArg() {};
-  CliParserArg(const CliParserArg &other);
   CliParserArg(const CliArgType type, const char _shortName = 0, const QString _help = QString(), const QString _def = QString());
-  CliParserArg &operator=(const CliParserArg &other);
 
   CliArgType type;
   char shortName;