Antares Simulator
Power System Simulator
|
Represents a multiplication node in a syntax tree. More...
#include <MultiplicationNode.h>
Public Member Functions | |
std::string | name () const override |
BinaryNode (Node *left, Node *right) | |
Constructs a binary node with the specified left and right operands. | |
![]() | |
BinaryNode (Node *left, Node *right) | |
Constructs a binary node with the specified left and right operands. | |
Node * | left () const |
Retrieves a pointer to the left operand. | |
Node * | right () const |
Retrieves a pointer to the right operand. | |
![]() | |
![]() | |
bool | operator== (const IName &other) const =default |
Represents a multiplication node in a syntax tree.
Constructs a binary node with the specified left and right operands.
left | The left operand. |
right | The right operand. |
|
inlineoverridevirtual |
Implements Antares::Expressions::IName.