Logo
Fully annotated reference manual - version 1.8.12
Loading...
Searching...
No Matches
Public Member Functions | List of all members
FunctionFwdAvgNode Struct Reference

#include <ored/scripting/ast.hpp>

+ Inheritance diagram for FunctionFwdAvgNode:
+ Collaboration diagram for FunctionFwdAvgNode:

Public Member Functions

 FunctionFwdAvgNode (const std::vector< ASTNodePtr > &args)
 
void accept (AcyclicVisitor &) override
 
- Public Member Functions inherited from ASTNode
 ASTNode ()
 
virtual ~ASTNode ()
 
 ASTNode (const std::vector< ASTNodePtr > &args, const Size minArgs, const Size maxArgs=Null< Size >())
 
virtual void accept (AcyclicVisitor &)
 

Additional Inherited Members

- Public Attributes inherited from ASTNode
LocationInfo locationInfo
 
std::vector< ASTNodePtrargs
 

Detailed Description

Definition at line 187 of file ast.hpp.

Constructor & Destructor Documentation

◆ FunctionFwdAvgNode()

FunctionFwdAvgNode ( const std::vector< ASTNodePtr > &  args)

Definition at line 188 of file ast.hpp.

188: ASTNode(args, 4, 14) {}
std::vector< ASTNodePtr > args
Definition: ast.hpp:64

Member Function Documentation

◆ accept()

void accept ( AcyclicVisitor &  v)
overridevirtual

Reimplemented from ASTNode.

Definition at line 248 of file ast.cpp.

248 {
249 auto v1 = dynamic_cast<Visitor<FunctionFwdAvgNode>*>(&v);
250 if (v1 != nullptr)
251 v1->visit(*this);
252 else
254}
virtual void accept(AcyclicVisitor &)
Definition: ast.cpp:48
+ Here is the call graph for this function: