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
WrongNumberOfArguments Class Reference

Detailed Description

Definition at line 57 of file FGFunction.cpp.

+ Inheritance diagram for WrongNumberOfArguments:
+ Collaboration diagram for WrongNumberOfArguments:

Public Member Functions

 WrongNumberOfArguments (const string &msg, const vector< FGParameter_ptr > &p, Element *el)
 
FGParameterFirstParameter (void) const
 
const ElementGetElement (void) const
 
size_t NumberOfArguments (void) const
 
- Public Member Functions inherited from BaseException
 BaseException (const std::string &msg)
 

Constructor & Destructor Documentation

◆ WrongNumberOfArguments()

WrongNumberOfArguments ( const string &  msg,
const vector< FGParameter_ptr > &  p,
Element el 
)
inline

Definition at line 60 of file FGFunction.cpp.

62 : BaseException(msg), Parameters(p), element(el) {}

Member Function Documentation

◆ FirstParameter()

FGParameter * FirstParameter ( void  ) const
inline

Definition at line 64 of file FGFunction.cpp.

64{ return *(Parameters.cbegin()); }

◆ GetElement()

const Element * GetElement ( void  ) const
inline

Definition at line 65 of file FGFunction.cpp.

65{ return element; }

◆ NumberOfArguments()

size_t NumberOfArguments ( void  ) const
inline

Definition at line 63 of file FGFunction.cpp.

63{ return Parameters.size(); }

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