diff -r 4317d277ba21 -r 765619b7cbb2 demo/arg_parser_demo.cc --- a/demo/arg_parser_demo.cc Sun Jul 13 16:46:56 2008 +0100 +++ b/demo/arg_parser_demo.cc Sun Jul 13 19:51:02 2008 +0100 @@ -1,6 +1,6 @@ -/* -*- C++ -*- +/* -*- mode: C++; indent-tabs-mode: nil; -*- * - * This file is a part of LEMON, a generic C++ optimization library + * This file is a part of LEMON, a generic C++ optimization library. * * Copyright (C) 2003-2008 * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport @@ -64,7 +64,7 @@ // Add non-parsed arguments (e.g. input files) ap.other("infile", "The input file.") .other("..."); - + // Perform the parsing process // (in case of any error it terminates the program) ap.parse(); @@ -84,7 +84,7 @@ if(ap.given("gra")) std::cout << " -gra is given\n"; if(ap.given("grb")) std::cout << " -grb is given\n"; if(ap.given("grc")) std::cout << " -grc is given\n"; - + switch(ap.files().size()) { case 0: std::cout << " No file argument was given.\n"; @@ -94,10 +94,10 @@ break; default: std::cout << " " - << ap.files().size() << " file arguments were given. They are:\n"; + << ap.files().size() << " file arguments were given. They are:\n"; } for(unsigned int i=0;i