1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
|
/* Copyright (C) 1999-2004 University of Oxford */
/* CCOPYRIGHT */
#include "options.h"
namespace Utilities {
using namespace std;
bool OptionParser::check_compulsory_arguments(bool verbose)
{
bool okay = true;
for(Options::iterator option = options_.begin();
option != options_.end();
option++) {
if((*option)->compulsory() && (*option)->unset()) {
if(okay) {
if(verbose) {
cerr << "***************************************************" << endl;
cerr << "The following COMPULSORY options have not been set:" << endl;
}
okay = false;
}
if(verbose)
(*option)->usage(cerr); cerr << endl;
}
}
if(!okay && verbose)
cerr << "***************************************************" << endl;
return okay;
}
}
|