Skip to content
#

cpp-concepts

Here are 6 public repositories matching this topic...

eseiler
eseiler commented Sep 16, 2020

Code:

#include <seqan3/argument_parser/all.hpp>

int main(int argc, char ** argv)
{
    seqan3::argument_parser parser{"App", argc, argv, false};

    parser.info.author = "Foo Bar";
    parser.info.email = "foobar@example.com";
    parser.info.short_copyright = "BSD 3-Clause License";

    try
    {
        parser.parse();
    }
    catch (seqan3::argument_parser_error cons

Improve this page

Add a description, image, and links to the cpp-concepts topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the cpp-concepts topic, visit your repo's landing page and select "manage topics."

Learn more

You can’t perform that action at this time.