FRigVMCopyExprAST

An abstract syntax tree copy expression represents the an assignment of one expression to another which causes / requires a copy operation.

Windows
MacOS
Linux

Inheritance Hierarchy

References

Module

RigVMDeveloper

Header

/Engine/Source/Developer/RigVMDeveloper/Public/RigVMCompiler/RigVMAST.h

Include

#include "RigVMCompiler/RigVMAST.h"

Syntax

class FRigVMCopyExprAST : public FRigVMAssignExprAST

Remarks

An abstract syntax tree copy expression represents the an assignment of one expression to another which causes / requires a copy operation. Within the RigVM AST this is only used for copying work state out of / into parameters or when composing / decomposing a structure (for ex: assigning a float to a vector.x). In C++ the copy expression is used for structures, for ex: FVector A = B; The copy expression references two pins / a link from the model.

Constructors

Name Description

Public function

FRigVMCopyExprAST

(
    const FRigVMCopyExprAST&
)

Disable copy constructor

Protected function

FRigVMCopyExprAST

(
    const FRigVMParserAST* InParse...,
    URigVMPin* InSourcePin,
    URigVMPin* InTargetPin
)

Default constructor (protected so that only parser can access it)

Destructors

Name Description

Public function Virtual

~FRigVMCopyExprAST()

Virtual destructor

Overridden from FRigVMExprAST

Name Description

Public function Virtual Const

bool

 

IsA

(
    EType InType
)

Overload of the type checking mechanism

Help shape the future of Unreal Engine documentation! Tell us how we're doing so we can serve you better.
Take our survey
Dismiss