JSBSim Flight Dynamics Model 1.2.3 (07 Jun 2025)
An Open Source Flight Dynamics and Control Software Library in C++
Loading...
Searching...
No Matches
Compare Struct Reference

Detailed Description

Definition at line 2067 of file props.hxx.

Public Member Functions

bool operator() (const SGPropertyNode *lhs, const SGPropertyNode *rhs) const
 
bool operator() (const SGPropertyNode *lhs, SGPropertyNode_ptr rhs) const
 
bool operator() (SGPropertyNode_ptr lhs, const SGPropertyNode *rhs) const
 
bool operator() (SGPropertyNode_ptr lhs, SGPropertyNode_ptr rhs) const
 

Member Function Documentation

◆ operator()() [1/4]

bool operator() ( const SGPropertyNode lhs,
const SGPropertyNode rhs 
) const
inline

Definition at line 2069 of file props.hxx.

2070 {
2071 return SGPropertyNode::compare(*lhs, *rhs);
2072 }
static bool compare(const SGPropertyNode &lhs, const SGPropertyNode &rhs)
Compare two property trees.

◆ operator()() [2/4]

bool operator() ( const SGPropertyNode lhs,
SGPropertyNode_ptr  rhs 
) const
inline

Definition at line 2077 of file props.hxx.

2078 {
2079 return SGPropertyNode::compare(*lhs, *rhs);
2080 }

◆ operator()() [3/4]

bool operator() ( SGPropertyNode_ptr  lhs,
const SGPropertyNode rhs 
) const
inline

Definition at line 2073 of file props.hxx.

2074 {
2075 return SGPropertyNode::compare(*lhs, *rhs);
2076 }

◆ operator()() [4/4]

bool operator() ( SGPropertyNode_ptr  lhs,
SGPropertyNode_ptr  rhs 
) const
inline

Definition at line 2081 of file props.hxx.

2082 {
2083 return SGPropertyNode::compare(*lhs, *rhs);
2084 }

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