#include <Constraint.h>
Inheritance diagram for TCLAP::Constraint< T >:
Public Member Functions | |
virtual std::string | description () const =0 |
Returns a description of the Constraint. | |
virtual std::string | shortID () const =0 |
Returns the short ID for the Constraint. | |
virtual bool | check (const T &value) const =0 |
The method used to verify that the value parsed from the command line meets the constraint. | |
virtual | ~Constraint () |
Destructor. |
Definition at line 38 of file Constraint.h.
|
Destructor. Silences warnings about Constraint being a base class with virtual functions but without a virtual destructor. Definition at line 64 of file Constraint.h. |
|
The method used to verify that the value parsed from the command line meets the constraint.
Implemented in TCLAP::ValuesConstraint< T >. |
|
Returns a description of the Constraint.
Implemented in TCLAP::ValuesConstraint< T >. |
|
Returns the short ID for the Constraint.
Implemented in TCLAP::ValuesConstraint< T >. |