Merge "Merge remote-tracking branch 'origin/release-4-6'"
[alexxy/gromacs.git] / src / gromacs / options / optionflags.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 /*! \file
32  * \brief
33  * Defines flags used in option implementation.
34  *
35  * Symbols in this header are considered an implementation detail, and should
36  * not be accessed outside the module.
37  * Because of details in the implementation, it is still installed.
38  *
39  * \author Teemu Murtola <teemu.murtola@cbr.su.se>
40  * \ingroup module_options
41  */
42 #ifndef GMX_OPTIONS_OPTIONFLAGS_H
43 #define GMX_OPTIONS_OPTIONFLAGS_H
44
45 #include "../utility/flags.h"
46
47 namespace gmx
48 {
49
50 /*! \cond libapi */
51 /*! \libinternal \brief
52  * Flags for options.
53  *
54  * These flags are not part of the public interface, even though they are in an
55  * installed header.  They are needed in a few template class implementations.
56  */
57 enum OptionFlag
58 {
59     //! %Option has been set.
60     efOption_Set                        = 1<<0,
61     //! The current value of the option is a programmatic default value.
62     efOption_HasDefaultValue            = 1<<1,
63     /*! \brief
64      * Next assignment to the option clears old values.
65      *
66      * This flag is set when a new option source starts, such that values
67      * from the new source will overwrite old ones.
68      */
69     efOption_ClearOnNextSet             = 1<<2,
70     //! %Option is required to be set.
71     efOption_Required                   = 1<<4,
72     //! %Option can be specified multiple times.
73     efOption_MultipleTimes              = 1<<5,
74     //! %Option is hidden from standard help.
75     efOption_Hidden                     = 1<<6,
76     /*! \brief
77      * %Option value is a vector, but a single value is also accepted.
78      *
79      * \see AbstractOption::setVector()
80      */
81     efOption_Vector                     = 1<<8,
82     //! %Option does not support default values.
83     efOption_NoDefaultValue             = 1<<9,
84     /*! \brief
85      * Storage object does its custom checking for minimum value count.
86      *
87      * If this flag is set, the class derived from OptionStorageTemplate should
88      * implement processSetValues(), processAll(), and possible other functions
89      * it provides such that it always fails if not enough values are provided.
90      * This is useful to override the default check, which is done in
91      * OptionStorageTemplate::processSet().
92      */
93     efOption_DontCheckMinimumCount      = 1<<10
94 };
95
96 //! \libinternal Holds a combination of ::OptionFlag values.
97 typedef FlagsTemplate<OptionFlag> OptionFlags;
98 //! \endcond
99
100 } // namespace gmx
101
102 #endif