MayaFlux 0.1.0
Digital-First Multimedia Processing Framework
Loading...
Searching...
No Matches

◆ NodeContext()

MayaFlux::Nodes::NodeContext::NodeContext ( double  value,
const std::string &  type 
)
inlineprotected

Protected constructor for NodeContext.

Parameters
valueThe current sample value
typeString identifier for the context type

This constructor is protected to ensure that only derived classes can create context objects, with proper type identification.

Definition at line 85 of file Node.hpp.

86 : value(value)
87 , type_id(type)
88 {
89 }
std::string type_id
Type identifier for runtime type checking.
Definition Node.hpp:48
double value
Current sample value.
Definition Node.hpp:40