JSBSim Flight Dynamics Model 1.2.2 (22 Mar 2025)
An Open Source Flight Dynamics and Control Software Library in C++
Loading...
Searching...
No Matches
FGPropertyReader::const_iterator Class Reference

Detailed Description

Definition at line 68 of file FGPropertyReader.h.

Public Member Functions

 const_iterator (const std::map< SGPropertyNode_ptr, double >::const_iterator &it)
 
bool operator!= (const const_iterator &it) const
 
FGPropertyNodeoperator* ()
 
const_iteratoroperator++ ()
 

Constructor & Destructor Documentation

◆ const_iterator()

const_iterator ( const std::map< SGPropertyNode_ptr, double >::const_iterator &  it)
inlineexplicit

Definition at line 71 of file FGPropertyReader.h.

71: prop_it(it) {}

Member Function Documentation

◆ operator!=()

bool operator!= ( const const_iterator it) const
inline

Definition at line 73 of file FGPropertyReader.h.

73{ return prop_it != it.prop_it; }

◆ operator*()

FGPropertyNode * operator* ( )
inline

Definition at line 74 of file FGPropertyReader.h.

74 {
75 SGPropertyNode* node = prop_it->first;
76 return static_cast<FGPropertyNode*>(node);
77 }

◆ operator++()

const_iterator & operator++ ( )
inline

Definition at line 72 of file FGPropertyReader.h.

72{ ++prop_it; return *this; }

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