MBDyn-1.7.3
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups
HighParser::range_ge< T > Struct Template Reference

#include <parser.h>

Inheritance diagram for HighParser::range_ge< T >:
Collaboration diagram for HighParser::range_ge< T >:

Public Member Functions

 range_ge (const T &l)
 
bool check (const T &value) const
 

Public Attributes

m_lower
 

Detailed Description

template<class T>
struct HighParser::range_ge< T >

Definition at line 333 of file parser.h.

Constructor & Destructor Documentation

template<class T >
HighParser::range_ge< T >::range_ge ( const T &  l)
inline

Definition at line 335 of file parser.h.

References NO_OP.

335 : m_lower(l) { NO_OP; };
#define NO_OP
Definition: myassert.h:74

Member Function Documentation

template<class T >
bool HighParser::range_ge< T >::check ( const T &  value) const
inlinevirtual

Reimplemented from HighParser::range_base< T >.

Definition at line 337 of file parser.h.

References HighParser::range_ge< T >::m_lower.

337  {
338  return (value >= m_lower);
339  };

Member Data Documentation

template<class T >
T HighParser::range_ge< T >::m_lower

Definition at line 334 of file parser.h.

Referenced by HighParser::range_ge< T >::check().


The documentation for this struct was generated from the following file: