JSBSim Flight Dynamics Model 1.3.0 (09 Apr 2026)
An Open Source Flight Dynamics and Control Software Library in C++
Loading...
Searching...
No Matches
Compare Struct Reference

Detailed Description

Definition at line 2060 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 2062 of file props.hxx.

2063 {
2064 return SGPropertyNode::compare(*lhs, *rhs);
2065 }
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 2070 of file props.hxx.

2071 {
2072 return SGPropertyNode::compare(*lhs, *rhs);
2073 }

◆ operator()() [3/4]

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

Definition at line 2066 of file props.hxx.

2067 {
2068 return SGPropertyNode::compare(*lhs, *rhs);
2069 }

◆ operator()() [4/4]

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

Definition at line 2074 of file props.hxx.

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

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