![]() |
Rosetta Utilities
2014.16.56682
|
Program vector-valued option abstract base class. More...
#include <VectorOption_T_.hh>
Public Types | |
| typedef utility::vector1< T > | Values |
| typedef K | key_type |
| typedef T | value_type |
| typedef Values::const_iterator | const_iterator |
| typedef Values::iterator | iterator |
| typedef K | Key |
| typedef T | Value |
| typedef Values::const_iterator | ConstIterator |
| typedef Values::iterator | Iterator |
Public Types inherited from utility::options::Option | |
| typedef OptionKey | key_type |
| typedef std::size_t | size_type |
| typedef OptionKey | Key |
| typedef std::size_t | Size |
Public Member Functions | |
| virtual VectorOption_T_ * | clone () const =0 |
| Clone this. More... | |
| virtual | ~VectorOption_T_ () |
| Destructor. More... | |
| operator Values const & () const | |
| Value conversion. More... | |
| VectorOption_T_ & | activate () |
| Activate. More... | |
| VectorOption_T_ & | deactivate () |
| Deactivate. More... | |
| VectorOption_T_ & | to_default () |
| Set to default value, if any. More... | |
| VectorOption_T_ & | clear () |
| Clear. More... | |
| VectorOption_T_ & | legal (Value const &value_a) |
| Add a legal value. More... | |
| VectorOption_T_ & | shortd (std::string const &s) |
| Set a short description. More... | |
| VectorOption_T_ & | lower (Value const &value_a) |
| Set a lower bound. More... | |
| VectorOption_T_ & | strict_lower (Value const &value_a) |
| Set a strict lower bound. More... | |
| VectorOption_T_ & | upper (Value const &value_a) |
| Set an upper bound. More... | |
| VectorOption_T_ & | strict_upper (Value const &value_a) |
| Set a strict upper bound. More... | |
| VectorOption_T_ & | n (Size const n_a) |
| Fixed number of values required assignment. More... | |
| VectorOption_T_ & | n_lower (Size const n_a) |
| Lower number of values allowed assignment. More... | |
| VectorOption_T_ & | n_upper (Size const n_a) |
| Upper number of values allowed assignment. More... | |
| virtual VectorOption_T_ & | default_value (Value const &value_a) |
| Default value assignment. More... | |
| virtual VectorOption_T_ & | def (Value const &value_a) |
| Default value assignment. More... | |
| virtual VectorOption_T_ & | def () |
| Default value assignment to empty vector. More... | |
| VectorOption_T_ & | default_value (Values const &value_a) |
| Default value vector assignment. More... | |
| VectorOption_T_ & | def (Values const &value_a) |
| Default value vector assignment. More... | |
| VectorOption_T_ & | cl_value (std::string const &value_str) |
| Value assignment from a command line string. More... | |
| virtual VectorOption_T_ & | value (Value const &value_a) |
| Value assignment. More... | |
| virtual VectorOption_T_ & | operator() (Value const &value_a) |
| Value assignment. More... | |
| VectorOption_T_ & | value (Values const &value_a) |
| Value vector assignment. More... | |
| VectorOption_T_ & | operator() (Values const &value_a) |
| Value vector assignment. More... | |
| VectorOption_T_ & | default_to (VectorOption_T_ const &option) |
| Default to another option's value. More... | |
| bool | legal_specs_report () const |
| Legal specifications check: Report and return error state. More... | |
| bool | legal_limits_report () const |
| Legal value limits check: Report and return error state. More... | |
| bool | legal_size_report () const |
| Legal size limits check: Report and return error state. More... | |
| bool | legal_default_report () const |
| Legal default value check: Report and return error state. More... | |
| void | legal_default_check () const |
| Legal default value check. More... | |
| void | legal_default_check (Value const &value_a) const |
| Legal default value check. More... | |
| bool | legal_report () const |
| Legal value check: Report and return error state. More... | |
| void | legal_check () const |
| Legal value check. More... | |
| void | legal_check (Value const &value_a) const |
| Legal value check. More... | |
| bool | specified_report () const |
| Required specified option check: Report and return error state. More... | |
| void | specified_check () const |
| Required specified option check. More... | |
| Key const & | key () const |
| Key. More... | |
| std::string const & | id () const |
| ID. More... | |
| std::string const & | identifier () const |
| Identifier. More... | |
| std::string const & | code () const |
| Code. More... | |
| std::string const & | name () const |
| Name. More... | |
| std::string const & | description () const |
| Description. More... | |
| std::string const & | short_description () const |
| Short Description. More... | |
| void | short_description (std::string const &sd) |
| bool | legal_default () const |
| Legal or inactive default value and size? More... | |
| bool | legal_default_value () const |
| Legal or inactive default value? More... | |
| bool | legal_default_size () const |
| Legal default value size? More... | |
| bool | legal () const |
| Legal value and size? More... | |
| bool | legal_value () const |
| Legal value? More... | |
| bool | legal_size () const |
| Legal value size? More... | |
| bool | legal_value (Value const &value_a) const |
| Is the given value legal? More... | |
| bool | has_default () const |
| Has a default? More... | |
| bool | default_active () const |
| Default active? More... | |
| bool | default_inactive () const |
| Default inactive? More... | |
| bool | active () const |
| Active? That is, the option has some value, either the default one or specified on the command line. More... | |
| bool | user () const |
| User-specified? That is, the option value was specified on the command line. You should probably use active() instead in almost all cases! More... | |
| bool | can_hold_another () const |
| Can another value be added and stay within any size constraints? More... | |
| Size | default_size () const |
| Default size (number of default values) More... | |
| Size | n_default_value () const |
| Number of default values (default size) More... | |
| Size | size () const |
| Size (number of values) More... | |
| Size | n_value () const |
| Number of values (size) More... | |
| bool | has_any_of_characters (std::string const str_, std::string const s) const |
| Has Any Character of a std::string? non ambiguous vesrion for Python binding. More... | |
| std::string | legal_string () const |
| Legal value string representation. More... | |
| std::string | size_constraint_string () const |
| Size constraint string representation. More... | |
| std::string | default_string () const |
| Default value string representation. More... | |
| std::string | value_string () const |
| Value string representation. More... | |
| std::string | equals_string () const |
| =Value string representation More... | |
| LegalBound const & | lower () const |
| Lower bound. More... | |
| LegalBound const & | upper () |
| Upper bound. More... | |
| bool | fixed_size () const |
| Fixed number of values required? More... | |
| Size | n () const |
| Fixed number of values required (zero if none) More... | |
| Size | n_lower () const |
| Lower number of values allowed (zero if none) More... | |
| Size | n_upper () const |
| Upper number of values allowed (zero if none) More... | |
| Values const & | default_value () const |
| Default value. More... | |
| Value const & | default_value (Size const i) const |
| Default value at a given index. More... | |
| Values const & | value () const |
| Value. More... | |
| Values const & | operator() () const |
| Value. More... | |
| Values | value_or (Values const &value_a) const |
| Value or passed default if inactive. More... | |
| Values | user_or (Values const &value_a) const |
| Value or passed default if not user-specified. More... | |
| Value const & | value (Size const i) const |
| Value at a given index. More... | |
| Value const & | operator() (Size const i) const |
| Value at a given index. More... | |
| Value const & | operator[] (Size const i) const |
| Value at a given index. More... | |
| Value | value_or (Size const i, Value const &value_a) const |
| Value at a given index or passed default if inactive. More... | |
| Value | user_or (Size const i, Value const &value_a) const |
| Value at a given index or passed default if not user-specified. More... | |
Public Member Functions inherited from utility::options::VectorOption | |
| virtual | ~VectorOption () |
| Destructor. More... | |
Public Member Functions inherited from utility::options::Option | |
| virtual | ~Option () |
| Destructor. More... | |
| virtual bool | is_value (std::string const &value_str) const =0 |
| Is a string readable as this option's value type? More... | |
| virtual bool | is_cl_value (std::string const &value_str) const =0 |
| Is a string readable as this option's value type and a legal command line value? More... | |
| virtual std::string | type_string () const =0 |
| Option type code string representation. More... | |
| void | been_accessed () const |
| Set access property to true. More... | |
| void | set_accessed (bool setting) const |
| bool | is_been_accessed () const |
| Return true if option value was anyhow accessed. More... | |
| Option & | restrict_access (bool setting) |
| Restrict direct access to option for general use. More... | |
| void | check_restricted_access (bool do_check) const |
Protected Member Functions | |
| VectorOption_T_ () | |
| Default constructor. More... | |
| VectorOption_T_ (VectorOption_T_ const &option) | |
| Copy constructor. More... | |
| VectorOption_T_ (Key const &key_a, std::string const &description_a) | |
| Key + description constructor. More... | |
| VectorOption_T_ & | operator= (VectorOption_T_ const &option) |
| Copy assignment. More... | |
| virtual Value | value_of (std::string const &value_str) const =0 |
| Value of a string. More... | |
| virtual Values | values_of (std::string const &value_str) const |
| Value of a string. More... | |
| virtual std::string | value_string_of (Value const &v) const |
| String representation of a given value. More... | |
| void | default_inactive_error () const |
| Error handler for using inactive option value. More... | |
| void | inactive_error () const |
| Error handler for using inactive option value. More... | |
| virtual void | stream_setup (std::ostream &) const |
| Setup stream state for the Option value type. More... | |
| bool | unconstrained () const |
| Value is unconstrained? More... | |
| bool | default_is_legal () const |
| Default value is a specified legal value? More... | |
| bool | value_is_legal () const |
| Value is a specified legal value? More... | |
| bool | value_is_legal (Value const &value_a) const |
| Value is legal? More... | |
| bool | default_obeys_bounds () const |
| Default value obeys specified bounds? More... | |
| bool | value_obeys_bounds () const |
| Value obeys specified bounds? More... | |
| bool | value_obeys_bounds (Value const &value_a) const |
| Given value obeys specified bounds? More... | |
| bool | default_size_ok () const |
| Default value size is OK? More... | |
| bool | value_size_ok () const |
| Value size is OK? More... | |
Protected Member Functions inherited from utility::options::VectorOption | |
| VectorOption () | |
| Default constructor. More... | |
| VectorOption (VectorOption const &option) | |
| Copy constructor. More... | |
| VectorOption & | operator= (VectorOption const &) |
| Copy assignment. More... | |
Protected Member Functions inherited from utility::options::Option | |
| Option () | |
| Default constructor. More... | |
| Option (Option const &option) | |
| Copy constructor. More... | |
| Option & | operator= (Option const &option) |
| Copy assignment. More... | |
Private Types | |
| typedef VectorOption | Super |
| typedef std::set< T > | LegalValues |
| typedef Bound< T > | LegalBound |
Private Attributes | |
| Key | key_ |
| Key. More... | |
| std::string | description_ |
| Description. More... | |
| std::string | short_description_ |
| Short Description. More... | |
| LegalValues | legal_ |
| Legal values. More... | |
| LegalBound | lower_ |
| Bound values. More... | |
| LegalBound | upper_ |
| Size | n_ |
| Size requirements. More... | |
| Size | n_lower_ |
| Size | n_upper_ |
| State | default_state_ |
| Default state. More... | |
| Values | default_value_ |
| Value. More... | |
| State | state_ |
| State. More... | |
| Values | value_ |
| Value. More... | |
Additional Inherited Members | |
Protected Types inherited from utility::options::Option | |
| enum | State { INACTIVE, DEFAULT, USER } |
| Option state enumeration. More... | |
Program vector-valued option abstract base class.
| typedef Values::const_iterator utility::options::VectorOption_T_< K, T >::const_iterator |
| typedef Values::const_iterator utility::options::VectorOption_T_< K, T >::ConstIterator |
| typedef Values::iterator utility::options::VectorOption_T_< K, T >::iterator |
| typedef Values::iterator utility::options::VectorOption_T_< K, T >::Iterator |
| typedef K utility::options::VectorOption_T_< K, T >::Key |
| typedef K utility::options::VectorOption_T_< K, T >::key_type |
|
private |
|
private |
|
private |
| typedef T utility::options::VectorOption_T_< K, T >::Value |
| typedef T utility::options::VectorOption_T_< K, T >::value_type |
| typedef utility::vector1< T > utility::options::VectorOption_T_< K, T >::Values |
|
inlineprotected |
Default constructor.
|
inlineprotected |
Copy constructor.
|
inlineprotected |
Key + description constructor.
|
inlinevirtual |
Destructor.
|
inlinevirtual |
Activate.
Implements utility::options::VectorOption.
|
inlinevirtual |
Active? That is, the option has some value, either the default one or specified on the command line.
Implements utility::options::Option.
Referenced by utility::options::VectorOption_T_< BooleanVectorOptionKey, bool >::legal_value().
|
inlinevirtual |
Can another value be added and stay within any size constraints?
Implements utility::options::Option.
|
inlinevirtual |
Value assignment from a command line string.
Implements utility::options::VectorOption.
|
inlinevirtual |
Clear.
Implements utility::options::VectorOption.
|
pure virtual |
Clone this.
Implements utility::options::VectorOption.
Implemented in utility::options::AnyVectorOption< T >, utility::options::FileVectorOption, utility::options::PathVectorOption, utility::options::IntegerVectorOption, utility::options::RealVectorOption, utility::options::BooleanVectorOption, and utility::options::StringVectorOption.
|
inlinevirtual |
Code.
Implements utility::options::Option.
|
inlinevirtual |
Deactivate.
Implements utility::options::VectorOption.
|
inlinevirtual |
Default value assignment.
|
inlinevirtual |
Default value assignment to empty vector.
|
inline |
Default value vector assignment.
|
inlinevirtual |
Default active?
Implements utility::options::Option.
|
inlinevirtual |
Default inactive?
Implements utility::options::Option.
Referenced by utility::options::VectorOption_T_< BooleanVectorOptionKey, bool >::legal_default_value().
|
inlineprotected |
Error handler for using inactive option value.
|
inlineprotected |
Default value is a specified legal value?
Referenced by utility::options::VectorOption_T_< BooleanVectorOptionKey, bool >::legal_default_value().
|
inlineprotected |
Default value obeys specified bounds?
Referenced by utility::options::VectorOption_T_< BooleanVectorOptionKey, bool >::legal_default_value().
|
inlinevirtual |
Default size (number of default values)
Implements utility::options::Option.
|
inlineprotected |
Default value size is OK?
Referenced by utility::options::VectorOption_T_< BooleanVectorOptionKey, bool >::legal_default(), and utility::options::VectorOption_T_< BooleanVectorOptionKey, bool >::legal_default_size().
|
inlinevirtual |
Default value string representation.
Implements utility::options::Option.
Referenced by utility::options::VectorOption_T_< BooleanVectorOptionKey, bool >::legal_default_check(), and utility::options::VectorOption_T_< BooleanVectorOptionKey, bool >::legal_default_report().
|
inline |
Default to another option's value.
|
inlinevirtual |
Default value assignment.
|
inline |
Default value vector assignment.
|
inline |
Default value.
Referenced by utility::options::VectorOption_T_< BooleanVectorOptionKey, bool >::default_to().
|
inline |
Default value at a given index.
|
inlinevirtual |
Description.
Implements utility::options::Option.
|
inlinevirtual |
=Value string representation
Implements utility::options::Option.
|
inlinevirtual |
Fixed number of values required?
Implements utility::options::VectorOption.
|
inline |
Has Any Character of a std::string? non ambiguous vesrion for Python binding.
Referenced by utility::options::VectorOption_T_< BooleanVectorOptionKey, bool >::legal_string().
|
inlinevirtual |
Has a default?
Implements utility::options::Option.
|
inlinevirtual |
ID.
Implements utility::options::Option.
Referenced by utility::options::VectorOption_T_< BooleanVectorOptionKey, bool >::cl_value(), utility::options::VectorOption_T_< BooleanVectorOptionKey, bool >::legal_check(), utility::options::VectorOption_T_< BooleanVectorOptionKey, bool >::legal_default_check(), utility::options::VectorOption_T_< BooleanVectorOptionKey, bool >::legal_default_report(), utility::options::VectorOption_T_< BooleanVectorOptionKey, bool >::legal_limits_report(), utility::options::VectorOption_T_< BooleanVectorOptionKey, bool >::legal_report(), utility::options::VectorOption_T_< BooleanVectorOptionKey, bool >::legal_size_report(), utility::options::VectorOption_T_< BooleanVectorOptionKey, bool >::specified_check(), and utility::options::VectorOption_T_< BooleanVectorOptionKey, bool >::specified_report().
|
inlinevirtual |
Identifier.
Implements utility::options::Option.
|
inlineprotected |
Error handler for using inactive option value.
Referenced by utility::options::VectorOption_T_< BooleanVectorOptionKey, bool >::operator Values const &().
|
inlinevirtual |
|
inline |
Add a legal value.
|
inlinevirtual |
Legal value and size?
Implements utility::options::Option.
|
inlinevirtual |
Legal value check.
Implements utility::options::Option.
Referenced by utility::options::VectorOption_T_< BooleanVectorOptionKey, bool >::operator()(), and utility::options::VectorOption_T_< BooleanVectorOptionKey, bool >::value().
|
inline |
Legal value check.
|
inlinevirtual |
Legal or inactive default value and size?
Implements utility::options::Option.
|
inlinevirtual |
Legal default value check.
Implements utility::options::Option.
Referenced by utility::options::VectorOption_T_< BooleanVectorOptionKey, bool >::def(), and utility::options::VectorOption_T_< BooleanVectorOptionKey, bool >::default_value().
|
inline |
Legal default value check.
|
inlinevirtual |
Legal default value check: Report and return error state.
Implements utility::options::Option.
Referenced by utility::options::VectorOption_T_< BooleanVectorOptionKey, bool >::legal_specs_report().
|
inlinevirtual |
Legal default value size?
Implements utility::options::VectorOption.
Referenced by utility::options::VectorOption_T_< BooleanVectorOptionKey, bool >::legal_default_check(), and utility::options::VectorOption_T_< BooleanVectorOptionKey, bool >::legal_default_report().
|
inlinevirtual |
Legal or inactive default value?
Implements utility::options::VectorOption.
Referenced by utility::options::VectorOption_T_< BooleanVectorOptionKey, bool >::legal_default(), utility::options::VectorOption_T_< BooleanVectorOptionKey, bool >::legal_default_check(), and utility::options::VectorOption_T_< BooleanVectorOptionKey, bool >::legal_default_report().
|
inlinevirtual |
Legal value limits check: Report and return error state.
Implements utility::options::Option.
Referenced by utility::options::VectorOption_T_< BooleanVectorOptionKey, bool >::legal_specs_report().
|
inlinevirtual |
Legal value check: Report and return error state.
Implements utility::options::Option.
|
inlinevirtual |
Legal value size?
Implements utility::options::VectorOption.
Referenced by utility::options::VectorOption_T_< BooleanVectorOptionKey, bool >::legal_check(), and utility::options::VectorOption_T_< BooleanVectorOptionKey, bool >::legal_report().
|
inlinevirtual |
Legal size limits check: Report and return error state.
Implements utility::options::Option.
Referenced by utility::options::VectorOption_T_< BooleanVectorOptionKey, bool >::legal_specs_report().
|
inlinevirtual |
Legal specifications check: Report and return error state.
Implements utility::options::Option.
|
inlinevirtual |
Legal value string representation.
Implements utility::options::Option.
Referenced by utility::options::VectorOption_T_< BooleanVectorOptionKey, bool >::legal_limits_report().
|
inlinevirtual |
Legal value?
Implements utility::options::VectorOption.
Referenced by utility::options::VectorOption_T_< BooleanVectorOptionKey, bool >::cl_value(), utility::options::VectorOption_T_< BooleanVectorOptionKey, bool >::legal(), utility::options::VectorOption_T_< BooleanVectorOptionKey, bool >::legal_check(), utility::options::VectorOption_T_< BooleanVectorOptionKey, bool >::legal_default_check(), and utility::options::VectorOption_T_< BooleanVectorOptionKey, bool >::legal_report().
|
inline |
Is the given value legal?
|
inline |
Set a lower bound.
|
inline |
Lower bound.
|
inlinevirtual |
Fixed number of values required assignment.
Implements utility::options::VectorOption.
|
inlinevirtual |
Fixed number of values required (zero if none)
Implements utility::options::VectorOption.
|
inlinevirtual |
Number of default values (default size)
Implements utility::options::Option.
|
inlinevirtual |
Lower number of values allowed assignment.
Implements utility::options::VectorOption.
|
inlinevirtual |
Lower number of values allowed (zero if none)
Implements utility::options::VectorOption.
|
inlinevirtual |
Upper number of values allowed assignment.
Implements utility::options::VectorOption.
|
inlinevirtual |
Upper number of values allowed (zero if none)
Implements utility::options::VectorOption.
|
inlinevirtual |
Number of values (size)
Implements utility::options::Option.
|
inlinevirtual |
Name.
Implements utility::options::Option.
|
inline |
Value conversion.
|
inlinevirtual |
Value assignment.
|
inline |
Value vector assignment.
|
inline |
Value.
|
inline |
Value at a given index.
|
inlineprotected |
Copy assignment.
|
inline |
Value at a given index.
|
inlinevirtual |
Short Description.
Implements utility::options::Option.
|
inline |
|
inline |
Set a short description.
|
inlinevirtual |
Size (number of values)
Implements utility::options::Option.
Referenced by utility::options::VectorOption_T_< BooleanVectorOptionKey, bool >::can_hold_another(), basic::options::int2afteroption(), basic::options::optional_positive_intafteroption(), basic::options::real2afteroption(), and basic::options::real3afteroption().
|
inlinevirtual |
Size constraint string representation.
Implements utility::options::Option.
|
inlinevirtual |
Required specified option check.
Implements utility::options::Option.
|
inlinevirtual |
Required specified option check: Report and return error state.
Implements utility::options::Option.
|
inlineprotectedvirtual |
Setup stream state for the Option value type.
Reimplemented in utility::options::RealVectorOption.
Referenced by utility::options::VectorOption_T_< BooleanVectorOptionKey, bool >::legal_string().
|
inline |
Set a strict lower bound.
|
inline |
Set a strict upper bound.
|
inlinevirtual |
Set to default value, if any.
Implements utility::options::VectorOption.
|
inlineprotected |
Value is unconstrained?
Referenced by utility::options::VectorOption_T_< BooleanVectorOptionKey, bool >::legal_default_value(), and utility::options::VectorOption_T_< BooleanVectorOptionKey, bool >::legal_value().
|
inline |
Set an upper bound.
|
inline |
Upper bound.
|
inlinevirtual |
User-specified? That is, the option value was specified on the command line. You should probably use active() instead in almost all cases!
Implements utility::options::Option.
Referenced by utility::options::VectorOption_T_< BooleanVectorOptionKey, bool >::specified_check(), and utility::options::VectorOption_T_< BooleanVectorOptionKey, bool >::specified_report().
|
inline |
Value or passed default if not user-specified.
|
inline |
Value at a given index or passed default if not user-specified.
|
inlinevirtual |
Value assignment.
|
inline |
Value vector assignment.
|
inline |
Value.
|
inline |
Value at a given index.
|
inlineprotected |
Value is a specified legal value?
Referenced by utility::options::VectorOption_T_< BooleanVectorOptionKey, bool >::legal_value().
|
inlineprotected |
Value is legal?
|
inlineprotected |
Value obeys specified bounds?
Referenced by utility::options::VectorOption_T_< BooleanVectorOptionKey, bool >::legal_value().
|
inlineprotected |
Given value obeys specified bounds?
|
protectedpure virtual |
|
inline |
Value or passed default if inactive.
|
inline |
Value at a given index or passed default if inactive.
|
inlineprotected |
Value size is OK?
Referenced by utility::options::VectorOption_T_< BooleanVectorOptionKey, bool >::legal(), and utility::options::VectorOption_T_< BooleanVectorOptionKey, bool >::legal_size().
|
inlinevirtual |
Value string representation.
Implements utility::options::Option.
Referenced by utility::options::VectorOption_T_< BooleanVectorOptionKey, bool >::legal_check(), and utility::options::VectorOption_T_< BooleanVectorOptionKey, bool >::legal_report().
|
inlineprotectedvirtual |
String representation of a given value.
Referenced by utility::options::VectorOption_T_< BooleanVectorOptionKey, bool >::legal_check(), utility::options::VectorOption_T_< BooleanVectorOptionKey, bool >::legal_default_check(), and utility::options::VectorOption_T_< BooleanVectorOptionKey, bool >::legal_string().
|
inlineprotectedvirtual |
Value of a string.
Reimplemented in utility::options::IntegerVectorOption.
Referenced by utility::options::VectorOption_T_< BooleanVectorOptionKey, bool >::cl_value().
|
private |
Default state.
Referenced by utility::options::VectorOption_T_< BooleanVectorOptionKey, bool >::clear(), utility::options::VectorOption_T_< BooleanVectorOptionKey, bool >::def(), utility::options::VectorOption_T_< BooleanVectorOptionKey, bool >::default_active(), utility::options::VectorOption_T_< BooleanVectorOptionKey, bool >::default_inactive(), utility::options::VectorOption_T_< BooleanVectorOptionKey, bool >::default_size(), utility::options::VectorOption_T_< BooleanVectorOptionKey, bool >::default_value(), utility::options::VectorOption_T_< BooleanVectorOptionKey, bool >::has_default(), utility::options::VectorOption_T_< BooleanVectorOptionKey, bool >::n_default_value(), utility::options::VectorOption_T_< BooleanVectorOptionKey, bool >::operator=(), and utility::options::VectorOption_T_< BooleanVectorOptionKey, bool >::to_default().
|
private |
Value.
Referenced by utility::options::VectorOption_T_< BooleanVectorOptionKey, bool >::clear(), utility::options::VectorOption_T_< BooleanVectorOptionKey, bool >::def(), utility::options::VectorOption_T_< BooleanVectorOptionKey, bool >::default_size(), utility::options::VectorOption_T_< BooleanVectorOptionKey, bool >::default_value(), utility::options::VectorOption_T_< BooleanVectorOptionKey, bool >::n_default_value(), utility::options::VectorOption_T_< BooleanVectorOptionKey, bool >::operator=(), and utility::options::VectorOption_T_< BooleanVectorOptionKey, bool >::to_default().
|
private |
|
private |
Key.
Referenced by utility::options::VectorOption_T_< BooleanVectorOptionKey, bool >::code(), utility::options::VectorOption_T_< BooleanVectorOptionKey, bool >::id(), utility::options::VectorOption_T_< BooleanVectorOptionKey, bool >::identifier(), utility::options::VectorOption_T_< BooleanVectorOptionKey, bool >::key(), utility::options::VectorOption_T_< BooleanVectorOptionKey, bool >::name(), and utility::options::VectorOption_T_< BooleanVectorOptionKey, bool >::operator=().
|
private |
|
private |
Bound values.
Referenced by utility::options::VectorOption_T_< BooleanVectorOptionKey, bool >::legal_limits_report(), utility::options::VectorOption_T_< BooleanVectorOptionKey, bool >::legal_string(), utility::options::VectorOption_T_< BooleanVectorOptionKey, bool >::lower(), utility::options::VectorOption_T_< BooleanVectorOptionKey, bool >::operator=(), and utility::options::VectorOption_T_< BooleanVectorOptionKey, bool >::strict_lower().
|
private |
Size requirements.
Referenced by utility::options::VectorOption_T_< BooleanVectorOptionKey, bool >::can_hold_another(), utility::options::VectorOption_T_< BooleanVectorOptionKey, bool >::clear(), utility::options::VectorOption_T_< BooleanVectorOptionKey, bool >::legal_size_report(), utility::options::VectorOption_T_< BooleanVectorOptionKey, bool >::n(), and utility::options::VectorOption_T_< BooleanVectorOptionKey, bool >::operator=().
|
private |
Referenced by utility::options::VectorOption_T_< BooleanVectorOptionKey, bool >::clear(), utility::options::VectorOption_T_< BooleanVectorOptionKey, bool >::legal_size_report(), utility::options::VectorOption_T_< BooleanVectorOptionKey, bool >::n_lower(), and utility::options::VectorOption_T_< BooleanVectorOptionKey, bool >::operator=().
|
private |
Referenced by utility::options::VectorOption_T_< BooleanVectorOptionKey, bool >::can_hold_another(), utility::options::VectorOption_T_< BooleanVectorOptionKey, bool >::clear(), utility::options::VectorOption_T_< BooleanVectorOptionKey, bool >::legal_size_report(), utility::options::VectorOption_T_< BooleanVectorOptionKey, bool >::n_upper(), and utility::options::VectorOption_T_< BooleanVectorOptionKey, bool >::operator=().
|
private |
|
private |
State.
Referenced by utility::options::VectorOption_T_< BooleanVectorOptionKey, bool >::activate(), utility::options::VectorOption_T_< BooleanVectorOptionKey, bool >::active(), utility::options::VectorOption_T_< BooleanVectorOptionKey, bool >::cl_value(), utility::options::VectorOption_T_< BooleanVectorOptionKey, bool >::clear(), utility::options::VectorOption_T_< BooleanVectorOptionKey, bool >::deactivate(), utility::options::VectorOption_T_< BooleanVectorOptionKey, bool >::def(), utility::options::VectorOption_T_< BooleanVectorOptionKey, bool >::default_to(), utility::options::VectorOption_T_< BooleanVectorOptionKey, bool >::default_value(), utility::options::VectorOption_T_< BooleanVectorOptionKey, bool >::n_value(), utility::options::VectorOption_T_< BooleanVectorOptionKey, bool >::operator Values const &(), utility::options::VectorOption_T_< BooleanVectorOptionKey, bool >::operator()(), utility::options::VectorOption_T_< BooleanVectorOptionKey, bool >::operator=(), utility::options::VectorOption_T_< BooleanVectorOptionKey, bool >::size(), utility::options::VectorOption_T_< BooleanVectorOptionKey, bool >::to_default(), utility::options::VectorOption_T_< BooleanVectorOptionKey, bool >::user(), and utility::options::VectorOption_T_< BooleanVectorOptionKey, bool >::value().
|
private |
Referenced by utility::options::VectorOption_T_< BooleanVectorOptionKey, bool >::legal_limits_report(), utility::options::VectorOption_T_< BooleanVectorOptionKey, bool >::legal_string(), utility::options::VectorOption_T_< BooleanVectorOptionKey, bool >::operator=(), utility::options::VectorOption_T_< BooleanVectorOptionKey, bool >::strict_upper(), and utility::options::VectorOption_T_< BooleanVectorOptionKey, bool >::upper().
|
private |
Value.
Referenced by utility::options::VectorOption_T_< BooleanVectorOptionKey, bool >::cl_value(), utility::options::VectorOption_T_< BooleanVectorOptionKey, bool >::clear(), utility::options::VectorOption_T_< BooleanVectorOptionKey, bool >::def(), utility::options::VectorOption_T_< BooleanVectorOptionKey, bool >::default_value(), utility::options::VectorOption_T_< BooleanVectorOptionKey, bool >::n_value(), utility::options::VectorOption_T_< BooleanVectorOptionKey, bool >::operator Values const &(), utility::options::VectorOption_T_< BooleanVectorOptionKey, bool >::operator()(), utility::options::VectorOption_T_< BooleanVectorOptionKey, bool >::operator=(), utility::options::VectorOption_T_< BooleanVectorOptionKey, bool >::size(), utility::options::VectorOption_T_< BooleanVectorOptionKey, bool >::to_default(), and utility::options::VectorOption_T_< BooleanVectorOptionKey, bool >::value().
1.8.7