]> git.tdb.fi Git - libs/core.git/blobdiff - source/core/getopt.cpp
Replace earlier options sharing the same short or long name
[libs/core.git] / source / core / getopt.cpp
index cfc9d7a02fa99e547cc19afefecf6c32250691b3..911b673d9b1d28358966a302de44aaf6428735e3 100644 (file)
@@ -17,6 +17,23 @@ GetOpt::~GetOpt()
                delete *i;
 }
 
+GetOpt::OptBase &GetOpt::add_option(OptBase *opt)
+{
+       for(list<OptBase *>::iterator i=opts.begin(); i!=opts.end(); )
+       {
+               if((*i)->get_short()==opt->get_short() || (*i)->get_long()==opt->get_long())
+               {
+                       delete *i;
+                       opts.erase(i++);
+               }
+               else
+                       ++i;
+       }
+
+       opts.push_back(opt);
+       return *opts.back();
+}
+
 GetOpt::OptBase &GetOpt::get_option(char s)
 {
        for(list<OptBase *>::iterator i=opts.begin(); i!=opts.end(); ++i)