Remove rest of OptionsGlobalProperties.
[alexxy/gromacs.git] / src / gromacs / options.h
1 /*
2  *
3  *                This source code is part of
4  *
5  *                 G   R   O   M   A   C   S
6  *
7  *          GROningen MAchine for Chemical Simulations
8  *
9  * Written by David van der Spoel, Erik Lindahl, Berk Hess, and others.
10  * Copyright (c) 1991-2000, University of Groningen, The Netherlands.
11  * Copyright (c) 2001-2009, The GROMACS development team,
12  * check out http://www.gromacs.org for more information.
13
14  * This program is free software; you can redistribute it and/or
15  * modify it under the terms of the GNU General Public License
16  * as published by the Free Software Foundation; either version 2
17  * of the License, or (at your option) any later version.
18  *
19  * If you want to redistribute modifications, please consider that
20  * scientific software is very special. Version control is crucial -
21  * bugs must be traceable. We will be happy to consider code for
22  * inclusion in the official distribution, but derived work must not
23  * be called official GROMACS. Details are found in the README & COPYING
24  * files - if they are missing, get the official version at www.gromacs.org.
25  *
26  * To help us fund GROMACS development, we humbly ask that you cite
27  * the papers on the package - you can find them in the top README file.
28  *
29  * For more info, check our website at http://www.gromacs.org
30  */
31 /*! \defgroup module_options Extensible Handling of Options
32  * \ingroup group_utilitymodules
33  * \brief
34  * Provides functionality for handling options.
35  *
36  * <H3>Basic Use</H3>
37  *
38  * Basic interface for providing options is implemented by the Options class
39  * and classes defined in basicoptions.h for specifying individual options.
40  * Only these are needed if a class wants to provide a set of standard options.
41  *
42  * Values for options can be set using option parsers.
43  * Currently, only one is defined: CommandLineParser.
44  * As the name suggests, this parser gets values from command-line arguments.
45  * Multiple parsers can be used in sequence to provide option values from
46  * multiple sources; in such cases, if an option is provided in multiple
47  * sources, new values overwrite any values from previous sources.
48  *
49  * In most cases, it is desirable to be able to provide a help describing the
50  * available options.  When creating an Options object and adding options, it
51  * is possible to add descriptions for individual options as well as for the
52  * whole set of options.  These can then be used to write out a help using one
53  * of the provided help writers.
54  * Currently, only one is defined: AsciiHelpWriter
55  * (implementation is not yet complete).
56  *
57  * \if libapi
58  * <H3>Advanced Use (in library API)</H3>
59  *
60  * It is possible to extend the module with new option types and/or parsers for
61  * option values.
62  *
63  * To implement new option types, it is necessary to subclass the templates
64  * OptionTemplate and OptionStorageTemplate with the type of the values that
65  * the option should provide as the template argument.  After this is done, it
66  * is possible to add options of this new type using Options::addOption().
67  *
68  * To implement new parsers, one can use OptionsAssigner, which provides an
69  * interface to set values in an Options object.
70  *
71  * There is also an interface to iterate over all options in an Options object.
72  * One should implement the OptionsVisitor interface, and then use
73  * OptionsIterator to apply this visitor to the Options object.
74  * \endif
75  *
76  * \author Teemu Murtola <teemu.murtola@cbr.su.se>
77  */
78 /*! \file
79  * \brief
80  * Public API convenience header for handling of options.
81  *
82  * \author Teemu Murtola <teemu.murtola@cbr.su.se>
83  * \inpublicapi
84  * \ingroup module_options
85  */
86 #ifndef GMX_OPTIONS_H
87 #define GMX_OPTIONS_H
88
89 #include "options/basicoptions.h"
90 #include "options/options.h"
91
92 #endif