ARTS  2.0.49
parameters.h
Go to the documentation of this file.
1 /* Copyright (C) 2000-2008 Stefan Buehler <sbuehler@ltu.se>
2 
3  This program is free software; you can redistribute it and/or modify it
4  under the terms of the GNU General Public License as published by the
5  Free Software Foundation; either version 2, or (at your option) any
6  later version.
7 
8  This program is distributed in the hope that it will be useful,
9  but WITHOUT ANY WARRANTY; without even the implied warranty of
10  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11  GNU General Public License for more details.
12 
13  You should have received a copy of the GNU General Public License
14  along with this program; if not, write to the Free Software
15  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
16  USA. */
17 
28 #ifndef parameters_h
29 #define parameters_h
30 
31 #include "array.h"
32 #include "mystring.h"
33 
42 class Parameters {
43 public:
47  usage(),
48  helptext(),
49  help(false),
50  version(false),
51  basename(""),
52  controlfiles(),
53  reporting(-1),
54  methods(""),
55  numthreads(0),
56  includepath(),
57  input(""),
59  describe(""),
60  groups(false),
61  plain(false),
62  docserver(0),
63  baseurl(""),
64  daemon(false),
65  gui(false)
66  { /* Nothing to be done here */ }
72  bool help;
74  bool version;
110  bool groups;
112  bool plain;
118  bool daemon;
120  bool gui;
121 };
122 
123 
137 bool get_parameters(int argc, char **argv);
138 
139 
140 #endif // parameters_h
Parameters::reporting
Index reporting
This should be a two digit integer.
Definition: parameters.h:89
get_parameters
bool get_parameters(int argc, char **argv)
Get the command line parameters.
Definition: parameters.cc:42
Parameters::help
bool help
Only display the help text.
Definition: parameters.h:72
Parameters::docserver
Index docserver
Port to use for the docserver.
Definition: parameters.h:114
Parameters
Structure to hold all command line Parameters.
Definition: parameters.h:42
Parameters::usage
String usage
Short message how to call the program.
Definition: parameters.h:68
Parameters::version
bool version
Display version information.
Definition: parameters.h:74
array.h
This file contains the definition of Array.
Parameters::gui
bool gui
Flag to run with graphical user interface.
Definition: parameters.h:120
Parameters::workspacevariables
String workspacevariables
If this is given the argument ‘all’, it simply prints a list of all workspace variables.
Definition: parameters.h:105
Array< String >
Parameters::plain
bool plain
Generate plain help out suitable for script processing.
Definition: parameters.h:112
Parameters::describe
String describe
Print the description String of the given workspace variable or method.
Definition: parameters.h:108
Parameters::helptext
String helptext
Longer message explaining the options.
Definition: parameters.h:70
my_basic_string< char >
Parameters::basename
String basename
If this is specified (with the -b –basename option), it is used as the base name for the report file ...
Definition: parameters.h:78
Parameters::Parameters
Parameters()
Default constructor.
Definition: parameters.h:46
Parameters::controlfiles
ArrayOfString controlfiles
The filenames of the controlfiles.
Definition: parameters.h:81
Parameters::groups
bool groups
Print a list of all workspace variable groups.
Definition: parameters.h:110
Parameters::daemon
bool daemon
Flag to run the docserver in the background.
Definition: parameters.h:118
Parameters::methods
String methods
If this is given the argument ‘all’, it simply prints a list of all methods.
Definition: parameters.h:93
Parameters::baseurl
String baseurl
Baseurl for the docserver.
Definition: parameters.h:116
Parameters::input
String input
This is complementary to the methods switch.
Definition: parameters.h:101
Parameters::numthreads
Index numthreads
The maximum number of threads to use.
Definition: parameters.h:95
Index
INDEX Index
The type to use for all integer numbers and indices.
Definition: matpack.h:39
Parameters::includepath
ArrayOfString includepath
List of paths to search for include files.
Definition: parameters.h:97
mystring.h
This file contains the definition of String, the ARTS string class.