[med-svn] [Git][med-team/libmaus2][upstream] New upstream version 2.0.767+dfsg
Étienne Mollier
gitlab at salsa.debian.org
Thu Dec 3 07:26:02 GMT 2020
Étienne Mollier pushed to branch upstream at Debian Med / libmaus2
Commits:
934a437e by Étienne Mollier at 2020-12-02T20:20:19+01:00
New upstream version 2.0.767+dfsg
- - - - -
3 changed files:
- ChangeLog
- configure.ac
- src/libmaus2/util/ArgParser.hpp
Changes:
=====================================
ChangeLog
=====================================
@@ -1,3 +1,9 @@
+libmaus2 (2.0.767-1) unstable; urgency=medium
+
+ * Add getStringArgOrDefault in ArgParser
+
+ -- German Tischler-Höhle <germant at miltenyibiotec.de> Mon, 23 Nov 2020 13:01:14 +0100
+
libmaus2 (2.0.766-1) unstable; urgency=medium
* Enable compilation without libsecrecy
=====================================
configure.ac
=====================================
@@ -1,5 +1,5 @@
-AC_INIT(libmaus2,2.0.766,[germant at miltenyibiotec.de],[libmaus2],[https://gitlab.com/german.tischler/libmaus2])
-LIBRARY_VERSION=2:766:0
+AC_INIT(libmaus2,2.0.767,[germant at miltenyibiotec.de],[libmaus2],[https://gitlab.com/german.tischler/libmaus2])
+LIBRARY_VERSION=2:767:0
AC_MSG_NOTICE([Configuring for source in directory ${srcdir}])
AC_CANONICAL_SYSTEM
AC_CANONICAL_HOST
=====================================
src/libmaus2/util/ArgParser.hpp
=====================================
@@ -604,6 +604,18 @@ namespace libmaus2
}
}
+ std::string getStringArgOrDefault(std::string const & key, std::string const & v_default) const
+ {
+ if ( uniqueArgPresent(key) )
+ {
+ return (*this)[key];
+ }
+ else
+ {
+ return v_default;
+ }
+ }
+
template<typename value_type>
value_type getParsedArgOrDefault(std::string const & key, value_type const & v_default) const
{
View it on GitLab: https://salsa.debian.org/med-team/libmaus2/-/commit/934a437e6a08df9c1fac2d15af144d0de6acc68e
--
View it on GitLab: https://salsa.debian.org/med-team/libmaus2/-/commit/934a437e6a08df9c1fac2d15af144d0de6acc68e
You're receiving this email because of your account on salsa.debian.org.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://alioth-lists.debian.net/pipermail/debian-med-commit/attachments/20201203/46fa0c34/attachment-0001.html>
More information about the debian-med-commit
mailing list