Skip to content

Modify callSignature structure to hold active/output variables as vector of strings  #50

@ImProta

Description

@ImProta

Currently we store the input and output variables as std::string in the callSignature class structure
Ideally we should read the yaml file and store the values as std::vector<std::string>
Examples:

functions:
active: x, a, b
output: z

_functions[0].active => "x, a, b"

Ideally:

_functions[0].active => ["x", "a", "b"]

Metadata

Metadata

Assignees

Labels

enhancementNew feature or request

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions