Changeset View
Changeset View
Standalone View
Standalone View
source/blender/functions/FN_multi_function.hh
| Show First 20 Lines • Show All 91 Lines • ▼ Show 20 Lines | StringRefNull param_name(int param_index) const | ||||
| return signature_ref_->param_names[param_index]; | return signature_ref_->param_names[param_index]; | ||||
| } | } | ||||
| StringRefNull name() const | StringRefNull name() const | ||||
| { | { | ||||
| return signature_ref_->function_name; | return signature_ref_->function_name; | ||||
| } | } | ||||
| virtual std::string debug_name() const; | |||||
| bool depends_on_context() const | bool depends_on_context() const | ||||
| { | { | ||||
| return signature_ref_->depends_on_context; | return signature_ref_->depends_on_context; | ||||
| } | } | ||||
| const MFSignature &signature() const | const MFSignature &signature() const | ||||
| { | { | ||||
| BLI_assert(signature_ref_ != nullptr); | BLI_assert(signature_ref_ != nullptr); | ||||
| Show All 40 Lines | |||||